How to create your first Nodejs application with Express in 5 mins | 2020
#nodejs #express #firstapp What you will learn in this video ======================================== In this video you will how to create your very first nodejs application with nodejs #Server.js code ===================== const express = require('express'); const app=express(); const port=8080; app.get('/', (req,res)=_{ res.send("Home Page") }) app.get('/dashboard', (req,res)=_{ res.send("DashBoard Page") }) app.listen(port, ()=_{ console.log('Server Started , Port ', port) })
#nodejs #express #firstapp What you will learn in this video ======================================== In this video you will how to create your very first nodejs application with nodejs #Server.js code ===================== const express = require('express'); const app=express(); const port=8080; app.get('/', (req,res)=_{ res.send("Home Page") }) app.get('/dashboard', (req,res)=_{ res.send("DashBoard Page") }) app.listen(port, ()=_{ console.log('Server Started , Port ', port) })