# @pi0/nuxt-start

> runtime-only build for nuxt

Latest version **1.0.0-rc8** (published 2017-09-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install @pi0/nuxt-start
pnpm add @pi0/nuxt-start
yarn add @pi0/nuxt-start
bun add @pi0/nuxt-start
```

Provides the command `nuxt-start`.

## Health

**Score 40/100 (D)** — status: abandoned.

Positive: no vulnerabilities; high maintenance score; popular repo; extremely popular.

Warnings: low downloads; no types; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 1.0.0-rc8 |
| Published | 2017-09-04 |
| First published | 2017-09-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6.11 |
| Dependencies | 23 |
| Known vulnerabilities | 0 (+5 in 3 direct dependencies) |
| Install scripts | no |
| GitHub stars | 60874 |
| Maintainers | pi0 |
| Keywords | nuxt, nuxt.js, nuxtjs, vue, vue.js, vuejs, vue universal, vue ssr, vue isomorphic, vue versatile |

## Links

- npm: https://www.npmjs.com/package/@pi0/nuxt-start
- Repository: https://github.com/nuxt/nuxt.js
- Homepage: https://github.com/nuxt/nuxt.js#readme
- Issues: https://github.com/nuxt/nuxt.js/issues
- npm.io page: https://npm.io/package/@pi0/nuxt-start

## Dependencies (23)

- [vue](https://npm.io/package/vue.md) ~2.4.2
- [etag](https://npm.io/package/etag.md) ^1.8.0
- [pify](https://npm.io/package/pify.md) ^3.0.0
- [chalk](https://npm.io/package/chalk.md) ^2.1.0
- [debug](https://npm.io/package/debug.md) ^3.0.1
- [fresh](https://npm.io/package/fresh.md) ^0.5.0
- [lodash](https://npm.io/package/lodash.md) ^4.17.4
- [connect](https://npm.io/package/connect.md) ^3.6.3
- [fs-extra](https://npm.io/package/fs-extra.md) ^4.0.1
- [hash-sum](https://npm.io/package/hash-sum.md) ^1.0.2
- [tappable](https://npm.io/package/tappable.md) ^1.1.0
- [vue-meta](https://npm.io/package/vue-meta.md) ^1.1.0
- [ansi-html](https://npm.io/package/ansi-html.md) ^0.0.7
- [lru-cache](https://npm.io/package/lru-cache.md) ^4.1.1
- [source-map](https://npm.io/package/source-map.md) ^0.5.7
- [compression](https://npm.io/package/compression.md) ^1.7.0
- [pretty-error](https://npm.io/package/pretty-error.md) ^2.1.1
- [serve-static](https://npm.io/package/serve-static.md) ^1.12.4
- [@nuxtjs/youch](https://npm.io/package/@nuxtjs/youch.md) 3.0.2
- [server-destroy](https://npm.io/package/server-destroy.md) ^1.0.1
- [source-map-support](https://npm.io/package/source-map-support.md) ^0.4.17
- [vue-server-renderer](https://npm.io/package/vue-server-renderer.md) ~2.4.2
- [serialize-javascript](https://npm.io/package/serialize-javascript.md) ^1.4.0

## Recent versions

- 1.0.0-rc8 (latest) — 2017-09-04

## README

# nuxt-start

> Start Nuxt.js Application in production mode.

## Installation

```bash
npm install --save nuxt-start
````

Add/Update your "start" script into your `package.json`:

```json
{
	"scripts": {
		"start": "nuxt-start"
	}
}
```

## Usage

```bash
nuxt-start <dir> -p <port number> -H <hostname> -c <config file>
```

## Programmatic Usage

```js
const { Nuxt } = require('nuxt-start')

// Require nuxt config
const config = require('./nuxt.config.js')

// Create a new nuxt instance
const nuxt = new Nuxt(config)

// Start nuxt.js server
nuxt.listen(3000) // nuxt.listen(port, host)

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

---
_Source: https://npm.io/package/@pi0/nuxt-start · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
