Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nuxt-community/starter-template
DEPRECATED: use create-nuxt-app instead
https://github.com/nuxt-community/starter-template
nuxt nuxt-template vue
Last synced: about 1 month ago
JSON representation
DEPRECATED: use create-nuxt-app instead
- Host: GitHub
- URL: https://github.com/nuxt-community/starter-template
- Owner: nuxt-community
- License: mit
- Archived: true
- Created: 2016-11-23T16:03:50.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-09T09:44:14.000Z (almost 6 years ago)
- Last Synced: 2024-09-18T17:15:24.090Z (about 2 months ago)
- Topics: nuxt, nuxt-template, vue
- Language: Vue
- Homepage: https://github.com/nuxt-community/create-nuxt-app
- Size: 93.8 KB
- Stars: 607
- Watchers: 21
- Forks: 330
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nuxtjs - Nuxt.js starter project template.
README
# IMPORTANT: This template is deprecated
Please use [create-nuxt-app](https://github.com/nuxt-community/create-nuxt-app) to scaffold your Nuxt applications instead!
## Starter
A [Nuxt.js](https://github.com/nuxt/nuxt.js) starter project template without the distraction of a complicated development environment.
Live demo: https://starter.nuxtjs.org
## Prerequisites
Make sure to have `node 8.0+` and `npm 5.0+` installed
## Installation
This is a project template for [vue-cli](https://github.com/vuejs/vue-cli).
``` bash
$ vue init nuxt-community/starter-template my-project
$ cd my-project
# install dependencies
$ npm install # Or yarn install
```> Make sure to use a version of vue-cli >= 2.1 (`vue -V`).
## Usage
### Development
``` bash
# serve with hot reloading at localhost:3000
$ npm run dev
```Go to [http://localhost:3000](http://localhost:3000)
### Production
``` bash
# build for production and launch the server
$ npm run build
$ npm start
```### Generate
``` bash
# generate a static project
$ npm run generate
```