A multi tenant Node.JS framework, took some inspiration from Grails.
Disclaimer:
- It has no intention to be a replacement for Express or other frameworks. It has no intention to be a highly configurable modular framework, instead generalization and abstraction is kept as minimum as possible.
- It is Stateless i.e. no session handling is implemented and neither there is any plan for it.
- Start the server as: node
index.js, define port in the index.js - Apps are located under the
sitesfolder - A demo app is given:
app1 app1/index.js: customize routesapp1/public: All public files e.g. views, images etc. Can have subdirectory as you need.app1/controller: Define your controllersapp1/commands: Place your command object. Command objects are instantiated and populated with the request parameters matching keys. They can be used to separate input validation from controllers. Inspired by Grails commands but very very simple.
- Initial release
- Gulp integration for all site gulp files.
- Yeoman generator
- Better log support.
- More test coverage ;-)
- Profile and optimize