文件名称:dashing-nodejs:用于处理 dashenee 事件的 Nodejs 服务器
文件大小:14KB
文件格式:ZIP
更新时间:2024-07-14 06:35:58
JavaScript
dashing-nodejs 仪表板的外部 Web 套接字服务器的 Javascript Nodejs 实现 安装 在项目的文件夹中: npm install 使用命令启动服务器:node testserver.js 配置 服务器是使用 Configuration 对象配置的。 默认对象在 ./lib/configuration.js 中定义 Configuration . Web = function ( ) { this . port = 3030 ; this . host = "0.0.0.0" ; this . auth_token = "YOUR_AUTH_TOKEN" ; this . requestLimit = 1e6 ; this . encoding = 'UTF-8' ; return this ; } Conf
【文件预览】:
dashing-nodejs-master
----config.js(451B)
----lib()
--------configuration.js(878B)
--------server.js(2KB)
--------websockets.js(5KB)
----.travis.yml(49B)
----LICENSE(11KB)
----test()
--------webserver_test.js(2KB)
--------dashboards_test.js(3KB)
--------websocket_test.js(8KB)
----README.md(3KB)
----Makefile(120B)
----.gitignore(592B)
----index.js(39B)
----package.json(823B)
----testserver.js(52B)