Nuxt/distributions/nuxt-start
pooya parsa 6cee89324f v2.6.2 2019-04-15 20:45:03 +04:30
..
bin fix: exit with proper error code on errors (#4806) 2019-01-19 16:19:57 +03:30
src feat: migrate nuxt into monorepo (#4051) 2018-10-18 00:58:25 +03:30
README.md feat: dx improvements (#4259) 2018-11-08 12:45:56 +03:30
package.js [internal] chore(pkg): use async and hooks (#4435) 2018-11-27 19:02:00 +03:30
package.json v2.6.2 2019-04-15 20:45:03 +04:30

README.md

nuxt-start

Start Nuxt.js Application in production mode.

Installation

npm install --save nuxt-start

Add/Update your "start" script into your package.json:

{
	"scripts": {
		"start": "nuxt-start"
	}
}

Usage

nuxt-start <dir> -p <port number> -H <hostname> -c <config file>

Programmatic Usage

const { Nuxt } = require('nuxt-start')

// Require nuxt config
const config = require('./nuxt.config.js')

// Create a new nuxt instance (config needs dev: false)
const nuxt = new Nuxt(config)

// Start nuxt.js server
nuxt.listen(3000) // nuxt.listen(port, host)

// Or use `nuxt.render` as an express middleware