Articles in this series
"Node.js is an open-source, cross-platform JavaScript runtime environment that allows developers to build server-side and networking applications...
0. Set up your Express application: npx express-generator myapp --view=ejs // npx express-generator . --view=ejs cd myapp npm install 1....
1. Installation š Download MongoDB Link 1. Installing mongoose npm i mongoose import mongoose from 'mongoose'; 2. Connect to Databse // ā...
Authentication in Express using jwt and cookie : -- 1. Required module Installation npm i express cookie-parser mongoose body-parser jsonwebtoken 1.2...
API Cheat sheet - LinkedIn Installation npm i express mongoose dotenv cookie-parser nothing import express, { json } from 'express'; const app =...
1. Get Method 1.1 Send id through body as json // app.js file app.get("/userid", async(req, res) => { const { myID } = req.body; // postman >...