UNPKG

cooperation

Version:
20 lines (19 loc) 685 B
# cooperation 多人协作开发框架 本框架简单规范了下前端模块化和后端工程化的项目结构,旨在统一团队内的开发模式 ##1. 初始 ```bash npm init npm i cooperation #然后...有空我在补上 ``` ##2. mhttp模块 ```javascript const mhttp = require('cooperation/server/mhttp'); mhttp({ port: CONFIG.mhttpPort, dev: program.dev }); ``` 这个模块提供http服务能力,并把前端的模块化工程自动组装,前端不需要引入任何代码即可实现模块化 前端不需要付出额外的学习成本,只需要读下使用说明即可上手[说明文档](https://github.com/clong1995) ##3. 剩下的有空我在补上...