1.0.0 • Published 6 years ago

vue-express-starter v1.0.0

Weekly downloads
6
License
-
Repository
github
Last release
6 years ago

vue-express starter

vue.js + express.js app template

Included

  • vue + vue-router with example components
  • express server with routes and api
  • simple json based database (lowdb)
  • building\watching scripts and tools

Installation

Best way to install is from vue-cli.

npm install -g vue-cli
vue init rdxi/vue-express new-project

(Or you can just download template manually and update package.json with new app name, description, author)

Usage

# install dependencies
npm install

# watch client and server at localhost:3000
npm run watch

# build and minify client js for production
npm run build-client