Nuxt.js with Express
Live Demo: https://codesandbox.io/s/github/nuxt-community/express-template/tree/demo
Installation
This is a project template for vue-cli.
vue init nuxt-community/express-template <project-name>
cd <project-name> # move to your project
npm install # or yarn installMake sure to use a version of vue-cli >= 2.1 (vue -V).
ExpressJS Changes
- There is a
apidirectory with the root of yourapiserver. - The
routesdirectory is calledapi/routes.
Commands
| Command | Description |
|---|---|
| npm run dev | Start ExpressJS server in development with Nuxt.js in dev mode (hot reloading). Listen on http://localhost:3000. |
| npm run build | Build the nuxt.js web application for production. |
| npm start | Start ExpressJS server in production. |