From Zero to Hero: Creating a MERN CRUD Application
Find the best article for the RESTapi CRUDnpm init -y
npm i express
npm i esm
npm i nodemon -D
npm i dotenv
create server.js make script -> "dev":"nodemon -r esm <file name>" ->
for production script: "start": "node -r esm server.js"
follow the model...
mern112dev.hashnode.dev3 min read