Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```