Here we create a basic hello world server using Express.
Routes:
'/'
'/wiki'
And for rest will give "404" , i.e. page not found.
'use strict';
const port = process.env.PORT || 3000;
var app = require('express')();
app.listen(port);
app.get('/',(req,res)=>res.send(...