├── .gitignore ├── README.md ├── app.js ├── controllers └── adminController.js ├── db ├── article.json ├── category.json ├── comments.json └── user.json ├── package.json ├── router ├── adminRouter.js └── frountRouter.js ├── uploads ├── 2.jpg └── icon.gif ├── utils ├── checkData.js ├── config.js ├── db.js └── message.js └── 开始.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/app.js -------------------------------------------------------------------------------- /controllers/adminController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/controllers/adminController.js -------------------------------------------------------------------------------- /db/article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/db/article.json -------------------------------------------------------------------------------- /db/category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/db/category.json -------------------------------------------------------------------------------- /db/comments.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] -------------------------------------------------------------------------------- /db/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/db/user.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/package.json -------------------------------------------------------------------------------- /router/adminRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/router/adminRouter.js -------------------------------------------------------------------------------- /router/frountRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/router/frountRouter.js -------------------------------------------------------------------------------- /uploads/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/uploads/2.jpg -------------------------------------------------------------------------------- /uploads/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/uploads/icon.gif -------------------------------------------------------------------------------- /utils/checkData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/utils/checkData.js -------------------------------------------------------------------------------- /utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/utils/config.js -------------------------------------------------------------------------------- /utils/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/utils/db.js -------------------------------------------------------------------------------- /utils/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnFish/bigNews/HEAD/utils/message.js -------------------------------------------------------------------------------- /开始.bat: -------------------------------------------------------------------------------- 1 | node app.js --------------------------------------------------------------------------------