Posts for Expressjs

Setting Up Angular Authentication Using JWT

In this article, we will be building an authentication system in Angular using Expressjs, MongoDB, and JSON web token(JWT) for authentication.We will start by creating a simple REST API with Expressjs and MongoDB that will enable a user to signup and login with their details. Learning prerequisites Basic familiarity with Javascript. Basic Knowledge of Angular. […]

April 9, 2020 in Angular & Node & Tutorials

Build A Blog App with ExpressJs and SvelteJs

Svelte makes use of a new approach to building user interfaces. Instead of doing the necessary work in the browser, Svelte shifts that work to a compile-time phase that happens on the development machine when you’re building your app. In this article, We will build a simple blog application with expressjs and Sveltejs. Prerequisites Familiarity […]

January 22, 2020 in Svelte & Tutorials

Creating a logging middleware in Expressjs

Logging is an important part of supporting the complete application life cycle. By analyzing the data in the logs, we could resolve bugs much quicker, and detect problems early as they happen. One of the most basic kind of logging every backend application should have is a trace logging of all incoming HTTP requests. In […]

December 26, 2019 in Node & Tutorials