Nuxt/distributions/nuxt-start
pooya parsa 8d355956d4 v2.12.1
[release]
2020-03-25 20:20:50 +01:00
..
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 refactor: update eslint-config to 1.x 2019-07-10 15:15:49 +04:30
package.json v2.12.1 2020-03-25 20:20:50 +01:00

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