Easily start an Express server with minimal setup.
npm install servify-express
Import the package and start the server:
const StartServer = require('servify-express');
StartServer.listen(3000);
This starts an Express server on port 3000 and logs the port automatically.