UNPKG

esrol

Version:

A wrapper of all Esrol server components for creating performance efficient, well structured (by following 'convention over configuration' approach), but also configurable, server-side applications.

7 lines (6 loc) 198 B
'use strict'; let App = require('esrol-server-app'); let path = require('path'); new App(path.join(__dirname, 'app'), () => { console.log ('Server(s) are listening and startup is finished.'); });