Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 451 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 451 Bytes

Guide to Start (without this repo)

  1. Init your node.js project
mkdir <Folder Name>
cd <Folder Name>
npm init -y
  1. Install package that need on your project (if having more you can install it later)
npm i express dotenv nodemon
  1. Setting up Startup Script
{
  ...,
  "scripts": {
    "start": "node app.js",
    "dev": "npx nodemon app.js"
  },
  ...
}
  1. Create file name app.js in root of your project