AMAniket Moreinblog.aniketmore.com·Jun 16, 2022 · 2 min readNode.js session authentication in one fileBelow is one file that shows how to do session authentication in node.js and express with a minimal example. The only dependencies on the project are express and dotenv index.js require("dotenv").config(); const express = require("express"); const s...00
AMAniket Moreinblog.aniketmore.com·Aug 30, 2021 · 3 min readRoadmap and Resources to learn ReactToday I want to talk about what to learn while learning react and the resources I used to learn react. Prerequisites we need to learn about basic web technologies before learning react you can use the following resources to learn about them HTML you...00
AMAniket Moreinblog.aniketmore.com·Aug 17, 2021 · 7 min readContinuous Deployment With Heroku, Docker, And Github ActionsToday we will talk about how to setup a very simple continuous deployment pipeline for a REST API using heroku, docker and github actions Prerequisites heroku account heroku cli docker git github account nodejs Basic knowledge of git, github, javasc...00