Nuxt/distributions/nuxt-start
renovate[bot] db29fcdbc3
chore(deps): update all non-major dependencies (#8698)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-01-26 23:07:49 +01:00
..
bin feat: support plug-and-play, typescript runtime and native modules (#8389) 2020-12-22 18:07:50 +01:00
src feat: migrate nuxt into monorepo (#4051) 2018-10-18 00:58:25 +03:30
README.md refactor: use nuxt everywhere (#8210) 2020-11-30 23:44:04 +01:00
package.js chore: ignore distro deps 2020-12-22 23:06:08 +01:00
package.json chore(deps): update all non-major dependencies (#8698) 2021-01-26 23:07:49 +01:00

README.md

nuxt-start

Start Nuxt 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 server
nuxt.listen(3000) // nuxt.listen(port, host)

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