Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Latest commit

 

History

History
60 lines (47 loc) · 1.55 KB

README.md

File metadata and controls

60 lines (47 loc) · 1.55 KB

Vue + Express boilerplate for development

Keywords

  • Vue
  • Express
  • Nodemon
  • Webpack
  • Npm

Structure

.
├── LICENSE
├── README.md
├── index.js
├── nodemon.json
├── package.json
├── src
│   ├── client
│   │   ├── App.vue
│   │   ├── components
│   │   │   └── Hello.vue
│   │   └── index.js
│   └── server
│       ├── index.js
│       ├── public
│       │   └── favicon.ico
│       ├── router.js
│       └── views
│           ├── error.jade
│           └── index.jade
└── webpack.config.js

Usage

  1. Install dependencies

    npm install

  2. Run the application

    npm run dev

References

Some ideas are stolen from them, really appreciated.