Nuxt/distributions/nuxt-start
Pooya Parsa 74d3bdcafb
[internal] chore(pkg): use async and hooks (#4435)
[skip release]
2018-11-27 19:02:00 +03:30
..
bin hotfix: nuxt-start tries to build instead of starting (#4384) 2018-11-21 19:34:01 +03:30
src feat: migrate nuxt into monorepo (#4051) 2018-10-18 00:58:25 +03:30
CHANGELOG.md merge 2.x changes into dev 2018-11-26 21:32:10 +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 merge 2.x changes into dev 2018-11-26 21:32:10 +03: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