# vue-express-mongodb **Repository Path**: bossyuan/vue-express-mongodb ## Basic Information - **Project Name**: vue-express-mongodb - **Description**: Vue + Express + Mongodb 全栈之路 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 100 - **Forks**: 35 - **Created**: 2017-06-26 - **Last Updated**: 2024-07-15 ## Categories & Tags **Categories**: vue-extensions **Tags**: None ## README Vue + Express + Mongodb 全栈之路 ========================================= ## Keywords - Vue - Express - Nodemon - Webpack - Npm - MongoDb ## 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. - [Eslint guide](http://eslint.org/docs/user-guide/getting-started) - [Express generator](http://expressjs.com/en/starter/generator.html) - [Vue template](https://github.com/vuejs-templates/webpack) - [Nodemon doc](https://github.com/remy/nodemon#nodemon) - [Babel register](http://www.ruanyifeng.com/blog/2016/01/babel.html) - [webpack-dev-middleware-boilerplate](https://github.com/madole/webpack-dev-middleware-boilerplate/tree/master/src) - [how-can-i-use-webpack-with-express](http://stackoverflow.com/questions/31102035/how-can-i-use-webpack-with-express) - [The-ultimate-webpack-setup](http://www.christianalfoni.com/articles/2015_04_19_The-ultimate-webpack-setup)