开源软件名称: Joursion/r-ct开源软件地址: https://github.com/Joursion/r-ct开源编程语言:
JavaScript
99.9%
开源软件介绍: r-ct
和 r-chat 基本类似. r-ct 使用前后端分离.
前端 koa + react.js
后端 koa
使用:
克隆项目 git clone https://github.com/Joursion/r-ct.git
进入项目目录 cd r-ct
分别在front/server中 , 安装依赖包 npm install
在front/src/javascript/default.js ,server/config.js 修改相关配置
分别运行前后端
API
无参数 返回格式{"success":"true", "data":[{"content":"", "_id":"",...}]}
返回数据: {"success":"true", "data":req.data}
可能会遇到的问题
addComponentAsRefTo(...): Only a ReactOwner can have refs. You might be adding
a ref to a component that was not created inside a component's render method, or you have multiple copies of React loaded.
解决方法 详见
后来我在 这里 又看到,
删掉 node_modules/material-ui/node_modules/react 感觉有点坑啊...!!
Error during WebSocket handshake: Unexpected response code: 400
在nginx 中添加如下: 具体问题(socketio/socket.io#1942 )
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
项目目录
├── front
│ ├── dest
│ │ └── r-chat.css
│ ├── gulpfile.js
│ ├── package.json
│ ├── README.md
│ └── src
│ ├── app.js
│ ├── bundle.js
│ ├── bundle.js.map
│ ├── css
│ │ └── r-chat.css
│ ├── gulpfile.js
│ ├── img
│ │ ├── favicon1.ico
│ │ └── favicon.ico
│ ├── index.html
│ ├── javascript
│ │ ├── action.js
│ │ ├── components
│ │ │ ├── avatar.jsx
│ │ │ ├── dialog.jsx
│ │ │ ├── footer.jsx
│ │ │ ├── header.jsx
│ │ │ ├── inputBox.jsx
│ │ │ ├── loginBox.jsx
│ │ │ ├── messageBox.jsx
│ │ │ ├── message.jsx
│ │ │ ├── regBox.jsx
│ │ │ ├── setting.jsx
│ │ │ └── user.jsx
│ │ ├── default.js
│ │ ├── main.jsx
│ │ ├── pages
│ │ │ ├── about.jsx
│ │ │ ├── api.jsx
│ │ │ ├── index.jsx
│ │ │ ├── login.jsx
│ │ │ ├── register.jsx
│ │ │ └── test.jsx
│ │ ├── reducer.js
│ │ └── store.js
│ ├── setting.js
│ └── webpack.config.js
├── npm-debug.log
├── README.md
└── server
├── app.js
├── config.js
├── lib
│ ├── message.js
│ ├── token.js
│ └── user.js
├── models
│ ├── index.js
│ ├── message.js
│ ├── token.js
│ └── user.js
├── package.json
├── README.md
└── router
├── app.js
└── src
└── md5.js
请发表评论