A starter which configures a lot of stuffs(expresss, session, routes, di, etc) for us and give a rest starter ready to use on any development.
Just add the following lines to have
const RestApplicationStarter = require("nodeboot-rest-starter").RestApplicationStarter;
const restApplicationStarter = new RestApplicationStarter();
restApplicationStarter.run(__dirname);
Basically if the developer add nodeboot-database-starter to its package.json, nodeboot-rest-starter will detect it and starts the auto configuration
- add more databases like postgress, sqlserver, oracle
- unit test, coverage, badges
- split into: nodeboot-ssr-web-starter, nodeboot-iam-simple-starter
- publish to npm repository: https://www.npmjs.com/package/repository
JRichardsz |