@igojs/server
v6.1.1
Published
Igo server framework - Express-based web framework for Node.js
Maintainers
Readme
@igojs/server
Express 5 web framework for Node.js with batteries included: ORM, templating, forms, i18n, Redis caching, mailer, CLI.
Install
npm install @igojs/serverOr scaffold a new project:
npx @igojs/server create myproject
cd myproject
npm install
npm startQuick start
const igo = require('@igojs/server');
igo.app.run(); // configures middleware + listens on config.httpportDefine routes in app/routes.js, controllers in app/controllers/, templates in views/, models extending igo.Model, forms extending igo.Form.
Documentation
Full documentation: https://igocreate.github.io/igo/server/getting-started
- Getting started
- Routes & controllers
- Forms
- Views & view helpers
- Cache (Redis)
- Mailer
- Flash scope
- i18n
- Error handling
- Development & CLI
- Production
- Testing
License
ISC
