Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 229 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 229 Bytes

NodeJS Server Setup

npm init
npm install express axios cors
npm install --save-dev nodemon
# Add: "scripts": { "start": "nodemon index.js" },
echo node_modules/ > .gitignore
touch index.js
# Add the code
npm run start