initsetup
v1.4.1
Published
Avoid the boiler plate code to setup the express app . It includes the express js, cors , body parser. All you need is just import and start the server
Downloads
3
Readme
What is this?
Avoid the boiler plate code to setup the express app . It includes the express js, cors , body parser. All you need is just import and start the server
Installation
npm i initsetup --save
Then...
var app = require ("initsetup");
app =app.initsetup;
app.listen(3000 ,() =>{
console.log("server is running");
});