I will show in this article, step by step, how to configure Webpack to work with TypeScript for front-end application. Webpack is a tool which allows us to code JavaScript or TypeScript front-end applications and divide our code on modules, separated files with view (html), logic (js) and styles (css), and gather all files into…
FIREBASE: integrate ADMIN SDK with NodeJS back-end API
In our first article about Firebase here I described how to create Firebase account, how to add it to our project and how to deploy whole project on Firebase hosting. In my second article about Firebase I described how to integrate Firebase user authentication service. So – two previous articles are about integration or Front-end…
FIREBASE: AUTHENTICATION IN WEB APP
In our previous article about Firebase here we described how to create Firebase account, how to add it to our project and how to deploy whole project on Firebase hosting. We added here to our project Firebase user authentication service in web application. And here we will continue that – we will integrate Firebase authentication…
FIREBASE: Add Firebase to your JavaScrpt project + Firebase CLI installation + Firebase hosting deploy
I will focus in this article on important part of work when you, as front-end developer, want to make in your own project users authentication, add based on that, give them access to your back-end API in Node.js. But as you are front-end developer, you are not a specialist in security of back-end applications and…
VueJS – loading spinner component
Loaders or spinners are popular way to fill empty container while its content is loading asynchronously. We use it – typically – when some content is loading, by using ajax request or something is processing in the background. We can use loading spinner in VueJS as a separate component in very nice and clean manner…
Send data between SalesForce and JavaScript Vue/React/Angular app in Aura component
I described in this article HERE how to embed your own custom JavaScript app (in my case VueJS app) inside SalesForce page with Aura Component. I mean by “JavaScript” app, the application coded in VueJS, ReactJS, Angular or in pure JavaScript. I will continue here article mentioned earlier. Embedding you custom front-end gives really huge…
Insert JavaScript vuejs/react/angular apps into SalesForce page
I will show in this short tutorial how to insert JavaScript application (in React, Vue, Angular) into SalesForce page (by Aura component). Our JavaScript application can be done in whatever framework you want. It can be VueJS, ReactJS, Angular or even any kind of front-end application, also written in pure JavaScript code without frameworks. I…
Create modal window in vanilla JavaScript
Modal or popup windows are very useful elements of websites or webapps – you can display in it a notifications, additional or detailed information or it can be a “dialog window” in which user must take some decision, let’s say “Are you sure you want to delete the file?” So in general – there are…
PHP – simple REST API – step by step
If you need to build a very simple REST API with PHP you are in right place! I needed some time ago to build a very simple REST API in PHP. I had to use PHP – this was the only back-end technology in my project and at that moment, my skills were poor in…