Never get a boring domain. Get .Tech!
Visit Radix https://bit.ly/3cg9cv7
promotedJavascript Enthusiast
Initialize the project:
npm init
Install the necessary dependencies:
npm install express http --save
Create the home script:
touch index.js
Install nodemon:
npm install nodemon -g
Write the server file:
let express = require('express')
let http = require('http')
// Initializes an express app.
let app = express()
// Gets the first route: '/'.
app.get('/', function(req, res) {
// Sends "HELLO WORLD"
res.send("HELLO WORLD")
})
// Creates a new http server with app and listens on localhost:8080 in your browser.
http.createServer(app).listen('8080')
Create your free account to unlock your custom reading experience.