JSPM

  • Created
  • Published
  • Downloads 130
  • Score
    100M100P100Q93151F
  • License MIT

node server for nervejs framework

Package Exports

  • node-nerve

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-nerve) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Nerve

Nerve is a full stack framework for building fast and modern web applications.

Installations

$ npm install nerve-cli -g

Quick Start

Create directory:

$ mkdir example-app
$ cd example-app

Create application:

$ nervejs create app

Start service:

$ npm run app

By default application start with development environment.

For start with production environment:

$ npm run app -- --env=prod

In production mode the application uses the compiled templates and does not clear the cache for required templates.

Compile templates:

$ npm run templates