Nuxt/distributions/nuxt-start
Pooya Parsa 2015140d12 feat(vue-app): universal fetch (#5028)
* pkg(nuxt-start): add node-fetch, unfetch

* pkg(vue-app): add node-fetch, unfetch

* add yarn.lock

* feat(config): _app.fetch options

* feat(builder): add fetch to templateVars

* feat(vue-app): polyfill global with fetch

* feat(fixtures/basic): /api/test

* add fetch example to fixtures

* remove unfetch from nuxt-start

* update template snapshot

* revert extra new line in server.js

* single line if
2019-02-14 16:56:58 +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
CHANGELOG.md v2.4.3 2019-02-06 19:26:54 +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 feat(vue-app): universal fetch (#5028) 2019-02-14 16:56:58 +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