Nerve is a full stack framework for building fast and modern web applications.
$ npm install nerve-cli -gCreate directory:
$ mkdir example-app
$ cd example-appCreate application:
$ nervejs create appStart service:
$ npm run appBy default application start with development environment.
For start with production environment:
$ npm run app -- --env=prodIn production mode the application uses the compiled templates and does not clear the cache for required templates.
Compile templates:
$ npm run templates