library is used is express js, you can install with npm package manager
npm install express --save
const express = require('express');
const app = express();
var port = 3001;
app.get('/',(req,resp) => {
resp.send('Hello World');
});
app.listen(port,() => {
console.log('app started');
});
result :

Great post.
BalasHapushttps://forums.perforce.com/index.php?/user/13732-salimahsadadantar/
Great post.
BalasHapushttps://os.mbed.com/users/LawrenceDavis/