I will show in this article how to use Webpack for bundling our front-end JavaScript projects. Webpack is a tool which allows us to code our JavaScript front-end application and divide our code on modules, separated files with view (html), logic (js) and styles (css), and gather all files into single html, javascript and css file with its transpilation (e.g.…
Tag: nodejs
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 – JavaScript application (in my…
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 implementing own, let’s say, JWT…
I will show you in this article how to build totally the easiest REST API build with NodeJS with Express plugin with TypeScript in place. This may sound as hard task to do, but with this short tutorial you will get everything working in just a few easy steps. You will be able to proceed further on your own. What…