Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinmint55/node-castle
基于 node.js + koa2 + Mongodb + socket.io构建的实时共享表格编辑后台服务
https://github.com/kevinmint55/node-castle
koa mongodb mongoose nodejs socketio
Last synced: about 1 month ago
JSON representation
基于 node.js + koa2 + Mongodb + socket.io构建的实时共享表格编辑后台服务
- Host: GitHub
- URL: https://github.com/kevinmint55/node-castle
- Owner: KevinMint55
- License: gpl-2.0
- Created: 2020-05-26T08:08:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T16:47:39.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T12:11:11.864Z (over 1 year ago)
- Topics: koa, mongodb, mongoose, nodejs, socketio
- Language: JavaScript
- Homepage:
- Size: 1.14 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### About
[vue-castle](https://github.com/KevinMint55/vue-castle)前端项目的后台服务,实现实时共享编辑表格的后台服务。
[Demo](https://castle.willwuwei.com/)
相关项目:[vue-willtable](https://github.com/KevinMint55/vue-willtable)
资源服务与[七牛云](https://www.qiniu.com/)对接,采用其CDN加速
### 技术栈
Nodejs + Koa2 + mongodb + mongoose + socket.io
### 开发指南
``` bash
# 安装依赖
npm install / yarn# 开发模式
npm run dev / yarn dev# 启动服务
npm start / yarn start
```> 注意:默认使用config/index.js为配置文件,在根目录新建config.js将优先使用
### 项目目录结构
```
node-castle # 项目名称
│
├── app # 应用
│ ├── middlewares # 中间件
│ ├── models # 模型
│ ├── routers # 路由
│ └── utils # 工具方法
│
├── assets # 临时图片生成地址
│
├── config
│ └── index.js # 配置文件
│
├── .editorconfig # 编辑器配置文件
├── .eslintrc.js # eslint配置文件
├── .gitignore # git文件忽略
├── .jsbeautifyrc # js文件格式化配置文件
├── app.js # 入口启动文件
├── package.json # 项目依赖配置
├── READMEAD.md # 开发说明
└── yarn.lock # 依赖版本锁```