Deprecated''
ExpressJs+
All you need tool in one web framework for NodeJs.
Usage
Install
npm install @ulvimemmeedov/expressjsplusInstall globally
npm install -g @ulvimemmeedov/expressjsplusStart the server
$ npm startCreate Router And Server
ES5
const { Service } = require('@ulvimemmeedov/expressjsplus');
Service.get('/',(request,response) => response.json("Hello Express.Js Plus")).listen(2000);ES6
import { Service } from '@ulvimemmeedov/expressjsplus';
Service.get('/',(request,response) => response.json("Hello Express.Js Plus")).listen(2000);Router
import { Service , Router} from '@ulvimemmeedov/expressjsplus';
Router.get("/",(request,response) => response.json("Hello Express.Js Plus");
Service.use(Router).listen(port,calback)