Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/htanjo/vue-webpack
Boilerplate for Vue.js + webpack project
https://github.com/htanjo/vue-webpack
babel boilerplate eslint vue vuex webpack
Last synced: 8 days ago
JSON representation
Boilerplate for Vue.js + webpack project
- Host: GitHub
- URL: https://github.com/htanjo/vue-webpack
- Owner: htanjo
- License: mit
- Created: 2017-03-30T03:18:31.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-10T06:30:07.000Z (over 7 years ago)
- Last Synced: 2024-12-03T03:35:23.548Z (2 months ago)
- Topics: babel, boilerplate, eslint, vue, vuex, webpack
- Language: JavaScript
- Size: 130 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vue-webpack
> Vue.js + webpack project## Features
- Vue.js 2
- Vuex
- Webpack 2
- Dev server with Hot module replacement
- ES6 using Babel
- Sass
- ESLint
- Build for production (Code splitting + Minify + Hash filename)
- Yarn## Workflow
**Setup:** Install dependencies for the project.```sh
$ npm install
# or run `yarn` if you have Yarn installed.
```**Develop:** Start dev server at localhost:3000.
```sh
$ npm start
```**Build:** Output minified files for production.
```sh
$ npm run build
```