mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 10:04:05 +00:00
6318438415
Co-authored-by: Daniel Roe <daniel@roe.dev>
21 lines
495 B
Markdown
21 lines
495 B
Markdown
# Node.js server
|
|
|
|
- Default preset if none is specified or auto-detected
|
|
- Loads only the chunks required to render the request for optimal cold start timing
|
|
- Useful for debugging
|
|
|
|
### Entrypoint
|
|
|
|
With `{ preset: 'server' }` the result will be an entrypoint that launches a ready-to-run Node server.
|
|
|
|
#### Example
|
|
|
|
```bash
|
|
node .output/server/index.mjs
|
|
# > Load chunks/nitro/server (10.405923ms)
|
|
# > Cold Start (26.289817ms)
|
|
# Listening on http://localhost:3000
|
|
|
|
curl http://localhost:3000
|
|
```
|