Nuxt/distributions/nuxt-start
Daniel Roe 81f5335f26
v2.18.1
2024-06-28 13:32:44 +02: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: update dependencies (#10510) 2022-06-24 00:58:52 +02:00
package.json v2.18.1 2024-06-28 13:32:44 +02: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