Step 1: Create an empty folder and move it into that folder from your VS Code editor, use the following command.
mkdir pro
cd pro
Step 2: Now create a file app.js file in your folder as shown below.
Step 3: Installing Module: Install the modules using the following command.
npm install express
npm install nodemon
Step 4: Add these two commands which are important for running and dynamically running the code after changes made in your Node.js app respectively in package.json file.
{ "name": "pro", "version": "1.0.0", "description": "", "main": "app.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "node app.js", "dev": "nodemon app.js" }, "author": "", "license": "ISC", "dependencies": { "express": "^4.17.1", "nodemon": "^2.0.12" } }
Step 5: Write down the following code in app.js file.
Step 6: Run the application using the following command:
npm run dev
Step 7: Now go to http://localhost:5000/ in your browser, you will see the following output:
No comments:
Post a Comment