- Vue
- Express
- Nodemon
- Webpack
- Npm
. ├── 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
-
Install dependencies
npm install
-
Run the application
npm run dev
Some ideas are stolen from them, really appreciated.