vending
v1.0.0
Published
A minimal Node.js CMS and web app framework
Downloads
2
Readme
Vending
A minimal Node.js CMS and web app framework.
Built using Express, Mongoose, MongoDB, Redis, Auth0 and Pug. Focusing on scalability, security, and simplicity.
Install
npm install --save vending
Usage
const vending = require('vending');
var app = vending()
vending.init({
mongo: 'mongodb://localhost:27017/',
redis: 'redis://localhost:8079/'
});
vending.listen(3000, () => console.log('App listening on port 3000!'));
Testing
npm test