Created
September 21, 2023 13:09
-
-
Save rishavk1102/c5abf01f66801967eee65562d17bdffb to your computer and use it in GitHub Desktop.
Commands to create a new NodeJS project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir [project_name] | |
cd [project_name] | |
npm init -y | |
touch index.js | |
npm i express multer | |
npm i nodemon --save-dev | |
code . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment