├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── business └── chat-tunnel-handler.js ├── config.js ├── globals.js ├── package.json ├── process.json ├── routes ├── index.js ├── login.js ├── tunnel.js ├── user.js └── welcome.js └── setup-qcloud-sdk.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | sftp-config.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/app.js -------------------------------------------------------------------------------- /business/chat-tunnel-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/business/chat-tunnel-handler.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/config.js -------------------------------------------------------------------------------- /globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/globals.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/package.json -------------------------------------------------------------------------------- /process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/process.json -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/routes/login.js -------------------------------------------------------------------------------- /routes/tunnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/routes/tunnel.js -------------------------------------------------------------------------------- /routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/routes/user.js -------------------------------------------------------------------------------- /routes/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/routes/welcome.js -------------------------------------------------------------------------------- /setup-qcloud-sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tencentyun/wafer-node-server-demo/HEAD/setup-qcloud-sdk.js --------------------------------------------------------------------------------