https://github.com/unisharp/vue-starter
Nuxt.js starter project template.
https://github.com/unisharp/vue-starter
nuxtjs vue-cli vue-cli-template vuejs2
Last synced: 3 months ago
JSON representation
Nuxt.js starter project template.
- Host: GitHub
- URL: https://github.com/unisharp/vue-starter
- Owner: UniSharp
- License: mit
- Created: 2017-08-29T16:36:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-05T04:13:05.000Z (over 6 years ago)
- Last Synced: 2025-01-10T12:49:17.869Z (4 months ago)
- Topics: nuxtjs, vue-cli, vue-cli-template, vuejs2
- Language: CSS
- Homepage: https://unisharp.github.io/vue-starter
- Size: 695 KB
- Stars: 3
- Watchers: 11
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Starter
A [Nuxt.js](https://github.com/nuxt/nuxt.js) starter project template without the distraction of a complicated development environment.
Live demo: https://unisharp.github.io/vue-starter
## 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 unisharp/vue-starter 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
```