首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

Rocket 实现Bot

操作系统 2.66MB 18 需要积分: 1
立即下载

资源介绍:

使用Rocket 创建一个机器人自动王频道里面发送信息,基础版。发送消息 需要配合下载node.js使用,以及自己使用的编程语言环境。 https://developer.rocket.chat/docs/creating-your-own-bot-from-scratch
# REST Client for Node.js [![npm version](https://badge.fury.io/js/node-rest-client.svg)](https://www.npmjs.com/package/node-rest-client) [![Build Status](https://travis-ci.org/olalonde/node-rest-client.svg?branch=master)](https://travis-ci.org/olalonde/node-rest-client) [![NPM](https://nodei.co/npm/node-rest-client.png?downloads=true)](https://nodei.co/npm/node-rest-client.png?downloads=true) ## Features Allows connecting to any API REST and get results as js Object. The client has the following features: - Transparent HTTP/HTTPS connection to remote API sites. - Allows simple HTTP basic authentication. - Allows most common HTTP operations: GET, POST, PUT, DELETE, PATCH or any other method through custom connect method - Allows creation of custom HTTP Methods (PURGE, etc.) - Direct or through proxy connection to remote API sites. - Register remote API operations as own client methods, simplifying reuse. - Dynamic path and query parameters and request headers. - Improved Error handling mechanism (client or specific request) - Added support for compressed responses: gzip and deflate - Added support for follow redirects thanks to great [follow-redirects](https://www.npmjs.com/package/follow-redirects) package - Added support for custom request serializers (json,xml and url-encoded included by default) - Added support for custom response parsers (json and xml included by default) ## Installation $ npm install node-rest-client ## Usages ### Simple HTTP GET Client has two ways to call a REST service: direct or using registered methods ```javascript var Client = require('node-rest-client').Client; var client = new Client(); // direct way client.get("http://remote.site/rest/xml/method", function (data, response) { // parsed response body as js object console.log(data); // raw response console.log(response); }); // registering remote methods client.registerMethod("jsonMethod", "http://remote.site/rest/json/method", "GET"); client.methods.jsonMethod(function (data, response) { // parsed response body as js object console.log(data); // raw response console.log(response); }); ``` ### HTTP POST POST, PUT or PATCH method invocation are configured like GET calls with the difference that you have to set "Content-Type" header in args passed to client method invocation: ```javascript //Example POST method invocation var Client = require('node-rest-client').Client; var client = new Client(); // set content-type header and data as json in args parameter var args = { data: { test: "hello" }, headers: { "Content-Type": "application/json" } }; client.post("http://remote.site/rest/xml/method", args, function (data, response) { // parsed response body as js object console.log(data); // raw response console.log(response); }); // registering remote methods client.registerMethod("postMethod", "http://remote.site/rest/json/method", "POST"); client.methods.postMethod(args, function (data, response) { // parsed response body as js object console.log(data); // raw response console.log(response); }); ``` If no "Content-Type" header is set as client arg POST,PUT and PATCH methods will not work properly. ### Passing args to registered methods You can pass diferents args to registered methods, simplifying reuse: path replace parameters, query parameters, custom headers ```javascript var Client = require('node-rest-client').Client; // direct way var client = new Client(); var args = { data: { test: "hello" }, // data passed to REST method (only useful in POST, PUT or PATCH methods) path: { "id": 120 }, // path substitution var parameters: { arg1: "hello", arg2: "world" }, // this is serialized as URL parameters headers: { "test-header": "client-api" } // request headers }; client.get("http://remote.site/rest/json/${id}/method", args, function (data, response) { // parsed response body as js object console.log(data); // raw response console.log(response); }); // registering remote methods client.registerMethod("jsonMethod", "http://remote.site/rest/json/${id}/method", "GET"); /* this would construct the following URL before invocation * * http://remote.site/rest/json/120/method?arg1=hello&arg2=world * */ client.methods.jsonMethod(args, function (data, response) { // parsed response body as js object console.log(data); // raw response console.log(response); }); ``` You can even use path placeholders in query string in direct connection: ```javascript var Client = require('node-rest-client').Client; // direct way var client = new Client(); var args = { path: { "id": 120, "arg1": "hello", "arg2": "world" }, headers: { "test-header": "client-api" } }; client.get("http://remote.site/rest/json/${id}/method?arg1=${arg1}&arg2=${arg2}", args, function (data, response) { // parsed response body as js object console.log(data); // raw response console.log(response); }); ``` ### HTTP POST and PUT methods To send data to remote site using POST or PUT methods, just add a data attribute to args object: ```javascript var Client = require('node-rest-client').Client; // direct way var client = new Client(); var args = { path: { "id": 120 }, parameters: { arg1: "hello", arg2: "world" }, headers: { "test-header": "client-api" }, data: "helloworld" }; client.post("http://remote.site/rest/xml/${id}/method", args, function (data, response) { // parsed response body as js object console.log(data); // raw response console.log(response); }); // registering remote methods client.registerMethod("xmlMethod", "http://remote.site/rest/xml/${id}/method", "POST"); client.methods.xmlMethod(args, function (data, response) { // parsed response body as js object console.log(data); // raw response console.log(response); }); // posted data can be js object var args_js = { path: { "id": 120 }, parameters: { arg1: "hello", arg2: "world" }, headers: { "test-header": "client-api" }, data: { "arg1": "hello", "arg2": 123 } }; client.methods.xmlMethod(args_js, function (data, response) { // parsed response body as js object console.log(data); // raw response console.log(response); }); ``` ### Request/Response configuration It's also possible to configure each request and response, passing its configuration as an additional argument in method call. ```javascript var client = new Client(); // request and response additional configuration var args = { path: { "id": 120 }, parameters: { arg1: "hello", arg2: "world" }, headers: { "test-header": "client-api" }, data: "helloworld", requestConfig: { timeout: 1000, //request timeout in milliseconds noDelay: true, //Enable/disable the Nagle algorithm keepAlive: true, //Enable/disable keep-alive functionalityidle socket. keepAliveDelay: 1000 //and optionally set the initial delay before the first keepalive probe is sent }, responseConfig: { timeout: 1000 //response timeout } }; client.post("http://remote.site/rest/xml/${id}/method", args, function (data, response) { // parsed response body as js object console.log(data); // raw response console.log(response); }); ``` If you want to handle timeout events both in the request and in the response just add a new "requestTimeout" or "responseTimeout" event handler to clientRequest returned by method call. ```javascript var client = new Client(); // request and response additional configuration var args = { path: { "id": 120 }, parameters: { arg1: "hello", arg2: "world" }, headers: { "test-header": "client-api" }, data: "helloworld", requestConfig: { timeout: 1000, //request timeout in milliseconds noDelay: true, //Enable/

资源文件列表:

Rocketbot.zip 大约有456个文件
  1. Rebot/
  2. Rebot/.git/
  3. Rebot/.git/config 316B
  4. Rebot/.git/description 73B
  5. Rebot/.git/HEAD 23B
  6. Rebot/.git/hooks/
  7. Rebot/.git/hooks/applypatch-msg.sample 478B
  8. Rebot/.git/hooks/commit-msg.sample 896B
  9. Rebot/.git/hooks/fsmonitor-watchman.sample 4.62KB
  10. Rebot/.git/hooks/post-update.sample 189B
  11. Rebot/.git/hooks/pre-applypatch.sample 424B
  12. Rebot/.git/hooks/pre-commit.sample 1.6KB
  13. Rebot/.git/hooks/pre-merge-commit.sample 416B
  14. Rebot/.git/hooks/pre-push.sample 1.34KB
  15. Rebot/.git/hooks/pre-rebase.sample 4.78KB
  16. Rebot/.git/hooks/pre-receive.sample 544B
  17. Rebot/.git/hooks/prepare-commit-msg.sample 1.46KB
  18. Rebot/.git/hooks/push-to-checkout.sample 2.72KB
  19. Rebot/.git/hooks/update.sample 3.56KB
  20. Rebot/.git/index 39.15KB
  21. Rebot/.git/info/
  22. Rebot/.git/info/exclude 240B
  23. Rebot/.git/logs/
  24. Rebot/.git/logs/HEAD 197B
  25. Rebot/.git/logs/refs/
  26. Rebot/.git/logs/refs/heads/
  27. Rebot/.git/logs/refs/heads/master 197B
  28. Rebot/.git/logs/refs/remotes/
  29. Rebot/.git/logs/refs/remotes/origin/
  30. Rebot/.git/logs/refs/remotes/origin/HEAD 197B
  31. Rebot/.git/objects/
  32. Rebot/.git/objects/info/
  33. Rebot/.git/objects/pack/
  34. Rebot/.git/objects/pack/pack-5d0bd8d43b92811c483cfb58ec94ca716f304858.idx 12.31KB
  35. Rebot/.git/objects/pack/pack-5d0bd8d43b92811c483cfb58ec94ca716f304858.pack 1.28MB
  36. Rebot/.git/packed-refs 114B
  37. Rebot/.git/refs/
  38. Rebot/.git/refs/heads/
  39. Rebot/.git/refs/heads/master 41B
  40. Rebot/.git/refs/remotes/
  41. Rebot/.git/refs/remotes/origin/
  42. Rebot/.git/refs/remotes/origin/HEAD 32B
  43. Rebot/.git/refs/tags/
  44. Rebot/.gitignore 391B
  45. Rebot/111.png 31.84KB
  46. Rebot/easybot.js 2.09KB
  47. Rebot/node_modules/
  48. Rebot/node_modules/.package-lock.json 7.78KB
  49. Rebot/node_modules/@rocket.chat/
  50. Rebot/node_modules/@rocket.chat/sdk/
  51. Rebot/node_modules/@rocket.chat/sdk/dist/
  52. Rebot/node_modules/@rocket.chat/sdk/dist/config/
  53. Rebot/node_modules/@rocket.chat/sdk/dist/config/asteroidInterfaces.d.ts 3.77KB
  54. Rebot/node_modules/@rocket.chat/sdk/dist/config/asteroidInterfaces.js 125B
  55. Rebot/node_modules/@rocket.chat/sdk/dist/config/asteroidInterfaces.js.map 3.95KB
  56. Rebot/node_modules/@rocket.chat/sdk/dist/config/driverInterfaces.d.ts 1.21KB
  57. Rebot/node_modules/@rocket.chat/sdk/dist/config/driverInterfaces.js 123B
  58. Rebot/node_modules/@rocket.chat/sdk/dist/config/driverInterfaces.js.map 1.34KB
  59. Rebot/node_modules/@rocket.chat/sdk/dist/config/messageInterfaces.d.ts 1.67KB
  60. Rebot/node_modules/@rocket.chat/sdk/dist/config/messageInterfaces.js 188B
  61. Rebot/node_modules/@rocket.chat/sdk/dist/config/messageInterfaces.js.map 2.21KB
  62. Rebot/node_modules/@rocket.chat/sdk/dist/index.d.ts 220B
  63. Rebot/node_modules/@rocket.chat/sdk/dist/index.js 741B
  64. Rebot/node_modules/@rocket.chat/sdk/dist/index.js.map 456B
  65. Rebot/node_modules/@rocket.chat/sdk/dist/lib/
  66. Rebot/node_modules/@rocket.chat/sdk/dist/lib/api.d.ts 3.36KB
  67. Rebot/node_modules/@rocket.chat/sdk/dist/lib/api.js 9.55KB
  68. Rebot/node_modules/@rocket.chat/sdk/dist/lib/api.js.map 14.94KB
  69. Rebot/node_modules/@rocket.chat/sdk/dist/lib/driver.d.ts 9.64KB
  70. Rebot/node_modules/@rocket.chat/sdk/dist/lib/driver.js 21.24KB
  71. Rebot/node_modules/@rocket.chat/sdk/dist/lib/driver.js.map 31.03KB
  72. Rebot/node_modules/@rocket.chat/sdk/dist/lib/log.d.ts 219B
  73. Rebot/node_modules/@rocket.chat/sdk/dist/lib/log.js 897B
  74. Rebot/node_modules/@rocket.chat/sdk/dist/lib/log.js.map 1.73KB
  75. Rebot/node_modules/@rocket.chat/sdk/dist/lib/message.d.ts 512B
  76. Rebot/node_modules/@rocket.chat/sdk/dist/lib/message.js 730B
  77. Rebot/node_modules/@rocket.chat/sdk/dist/lib/message.js.map 1.26KB
  78. Rebot/node_modules/@rocket.chat/sdk/dist/lib/methodCache.d.ts 1.76KB
  79. Rebot/node_modules/@rocket.chat/sdk/dist/lib/methodCache.js 3.09KB
  80. Rebot/node_modules/@rocket.chat/sdk/dist/lib/methodCache.js.map 4.75KB
  81. Rebot/node_modules/@rocket.chat/sdk/dist/lib/settings.d.ts 626B
  82. Rebot/node_modules/@rocket.chat/sdk/dist/lib/settings.js 1.74KB
  83. Rebot/node_modules/@rocket.chat/sdk/dist/lib/settings.js.map 3.48KB
  84. Rebot/node_modules/@rocket.chat/sdk/dist/utils/
  85. Rebot/node_modules/@rocket.chat/sdk/dist/utils/config.d.ts 178B
  86. Rebot/node_modules/@rocket.chat/sdk/dist/utils/config.js 1.05KB
  87. Rebot/node_modules/@rocket.chat/sdk/dist/utils/config.js.map 1.85KB
  88. Rebot/node_modules/@rocket.chat/sdk/dist/utils/interfaces.d.ts 3.68KB
  89. Rebot/node_modules/@rocket.chat/sdk/dist/utils/interfaces.js 117B
  90. Rebot/node_modules/@rocket.chat/sdk/dist/utils/interfaces.js.map 7.13KB
  91. Rebot/node_modules/@rocket.chat/sdk/dist/utils/setup.d.ts 12B
  92. Rebot/node_modules/@rocket.chat/sdk/dist/utils/setup.js 313B
  93. Rebot/node_modules/@rocket.chat/sdk/dist/utils/setup.js.map 465B
  94. Rebot/node_modules/@rocket.chat/sdk/dist/utils/start.d.ts 12B
  95. Rebot/node_modules/@rocket.chat/sdk/dist/utils/start.js 3.08KB
  96. Rebot/node_modules/@rocket.chat/sdk/dist/utils/start.js.map 4.08KB
  97. Rebot/node_modules/@rocket.chat/sdk/dist/utils/testing.d.ts 2.75KB
  98. Rebot/node_modules/@rocket.chat/sdk/dist/utils/testing.js 11.05KB
  99. Rebot/node_modules/@rocket.chat/sdk/dist/utils/testing.js.map 15.22KB
  100. Rebot/node_modules/@rocket.chat/sdk/dist/utils/users.d.ts 12B
  101. Rebot/node_modules/@rocket.chat/sdk/dist/utils/users.js 1.94KB
  102. Rebot/node_modules/@rocket.chat/sdk/dist/utils/users.js.map 1.77KB
  103. Rebot/node_modules/@rocket.chat/sdk/LICENSE 1.06KB
  104. Rebot/node_modules/@rocket.chat/sdk/package.json 2.13KB
  105. Rebot/node_modules/@rocket.chat/sdk/README.md 20.97KB
  106. Rebot/node_modules/@types/
  107. Rebot/node_modules/@types/lru-cache/
  108. Rebot/node_modules/@types/lru-cache/index.d.ts 6.87KB
  109. Rebot/node_modules/@types/lru-cache/LICENSE 1.13KB
  110. Rebot/node_modules/@types/lru-cache/package.json 987B
  111. Rebot/node_modules/@types/lru-cache/README.md 565B
  112. Rebot/node_modules/@types/node/
  113. Rebot/node_modules/@types/node/base.d.ts 386.39KB
  114. Rebot/node_modules/@types/node/index.d.ts 2.66KB
  115. Rebot/node_modules/@types/node/inspector.d.ts 103.26KB
  116. Rebot/node_modules/@types/node/LICENSE 1.13KB
  117. Rebot/node_modules/@types/node/package.json 4.64KB
  118. Rebot/node_modules/@types/node/README.md 1.87KB
  119. Rebot/node_modules/asteroid/
  120. Rebot/node_modules/asteroid/.travis.yml 227B
  121. Rebot/node_modules/asteroid/bower.json 678B
  122. Rebot/node_modules/asteroid/dist/
  123. Rebot/node_modules/asteroid/dist/asteroid.browser.js 32.61KB
  124. Rebot/node_modules/asteroid/dist/asteroid.chrome.js 32.94KB
  125. Rebot/node_modules/asteroid/dist/asteroid.cordova.js 33.6KB
  126. Rebot/node_modules/asteroid/dist/asteroid.node.js 31.11KB
  127. Rebot/node_modules/asteroid/dist/plugins/
  128. Rebot/node_modules/asteroid/dist/plugins/facebook-login.js 1.29KB
  129. Rebot/node_modules/asteroid/dist/plugins/github-login.js 1.28KB
  130. Rebot/node_modules/asteroid/dist/plugins/google-login.js 1.32KB
  131. Rebot/node_modules/asteroid/dist/plugins/twitter-login.js 1.21KB
  132. Rebot/node_modules/asteroid/docs/
  133. Rebot/node_modules/asteroid/docs/set.md 2.04KB
  134. Rebot/node_modules/asteroid/gulpfile.js 7KB
  135. Rebot/node_modules/asteroid/LICENSE 1.09KB
  136. Rebot/node_modules/asteroid/package.json 1.15KB
  137. Rebot/node_modules/asteroid/README.md 15.57KB
  138. Rebot/node_modules/asteroid/src/
  139. Rebot/node_modules/asteroid/src/core/
  140. Rebot/node_modules/asteroid/src/core/asteroid-constructor.js 709B
  141. Rebot/node_modules/asteroid/src/core/asteroid-methods.js 5.04KB
  142. Rebot/node_modules/asteroid/src/core/collection.js 7.23KB
  143. Rebot/node_modules/asteroid/src/core/lib/
  144. Rebot/node_modules/asteroid/src/core/lib/btoa.js 1.85KB
  145. Rebot/node_modules/asteroid/src/core/lib/clone.js 480B
  146. Rebot/node_modules/asteroid/src/core/lib/emitter.js 843B
  147. Rebot/node_modules/asteroid/src/core/lib/filter.js 1.74KB
  148. Rebot/node_modules/asteroid/src/core/lib/formQs.js 294B
  149. Rebot/node_modules/asteroid/src/core/lib/getOauthState.js 381B
  150. Rebot/node_modules/asteroid/src/core/lib/guid.js 232B
  151. Rebot/node_modules/asteroid/src/core/lib/isEmail.js 137B
  152. Rebot/node_modules/asteroid/src/core/lib/isEqual.js 198B
  153. Rebot/node_modules/asteroid/src/core/lib/multiStorage.js 85B
  154. Rebot/node_modules/asteroid/src/core/lib/must.js 715B
  155. Rebot/node_modules/asteroid/src/core/login.js 4.9KB
  156. Rebot/node_modules/asteroid/src/core/set.js 2.63KB
  157. Rebot/node_modules/asteroid/src/core/subscription.js 2.54KB
  158. Rebot/node_modules/asteroid/src/platforms/
  159. Rebot/node_modules/asteroid/src/platforms/browser/
  160. Rebot/node_modules/asteroid/src/platforms/browser/login.js 1.15KB
  161. Rebot/node_modules/asteroid/src/platforms/browser/multiStorage.js 484B
  162. Rebot/node_modules/asteroid/src/platforms/browser/setDdpOptions.js 610B
  163. Rebot/node_modules/asteroid/src/platforms/browser/wrapper/
  164. Rebot/node_modules/asteroid/src/platforms/browser/wrapper/head.js 415B
  165. Rebot/node_modules/asteroid/src/platforms/browser/wrapper/tail.js 26B
  166. Rebot/node_modules/asteroid/src/platforms/chrome/
  167. Rebot/node_modules/asteroid/src/platforms/chrome/login.js 1.58KB
  168. Rebot/node_modules/asteroid/src/platforms/chrome/multiStorage.js 730B
  169. Rebot/node_modules/asteroid/src/platforms/chrome/setDdpOptions.js 265B
  170. Rebot/node_modules/asteroid/src/platforms/chrome/wrapper/
  171. Rebot/node_modules/asteroid/src/platforms/chrome/wrapper/head.js 415B
  172. Rebot/node_modules/asteroid/src/platforms/chrome/wrapper/tail.js 26B
  173. Rebot/node_modules/asteroid/src/platforms/cordova/
  174. Rebot/node_modules/asteroid/src/platforms/cordova/login.js 2.14KB
  175. Rebot/node_modules/asteroid/src/platforms/cordova/multiStorage.js 484B
  176. Rebot/node_modules/asteroid/src/platforms/cordova/setDdpOptions.js 610B
  177. Rebot/node_modules/asteroid/src/platforms/cordova/wrapper/
  178. Rebot/node_modules/asteroid/src/platforms/cordova/wrapper/head.js 415B
  179. Rebot/node_modules/asteroid/src/platforms/cordova/wrapper/tail.js 26B
  180. Rebot/node_modules/asteroid/src/platforms/node/
  181. Rebot/node_modules/asteroid/src/platforms/node/login.js 223B
  182. Rebot/node_modules/asteroid/src/platforms/node/multiStorage.js 542B
  183. Rebot/node_modules/asteroid/src/platforms/node/setDdpOptions.js 272B
  184. Rebot/node_modules/asteroid/src/platforms/node/wrapper/
  185. Rebot/node_modules/asteroid/src/platforms/node/wrapper/head.js 114B
  186. Rebot/node_modules/asteroid/src/platforms/node/wrapper/tail.js 28B
  187. Rebot/node_modules/asteroid/src/plugins/
  188. Rebot/node_modules/asteroid/src/plugins/facebook-login.js 1.29KB
  189. Rebot/node_modules/asteroid/src/plugins/github-login.js 1.28KB
  190. Rebot/node_modules/asteroid/src/plugins/google-login.js 1.32KB
  191. Rebot/node_modules/asteroid/src/plugins/twitter-login.js 1.21KB
  192. Rebot/node_modules/asteroid/test/
  193. Rebot/node_modules/asteroid/test/asteroid.unit.js 44.04KB
  194. Rebot/node_modules/asteroid/test/browser.html 1004B
  195. Rebot/node_modules/asteroid/test/node.html 1.15KB
  196. Rebot/node_modules/asteroid/test/unit/
  197. Rebot/node_modules/asteroid/test/unit/00.setup.unit.js 368B
  198. Rebot/node_modules/asteroid/test/unit/asteroid.unit.js 6.21KB
  199. Rebot/node_modules/asteroid/test/unit/collection.unit.js 13.33KB
  200. Rebot/node_modules/asteroid/test/unit/filter.unit.js 4.73KB
  201. Rebot/node_modules/asteroid/test/unit/login.unit.js 7.56KB
  202. Rebot/node_modules/asteroid/test/unit/set.unit.js 5.92KB
  203. Rebot/node_modules/asteroid/test/unit/subscription.unit.js 5.92KB
  204. Rebot/node_modules/ddp.js/
  205. Rebot/node_modules/ddp.js/.jshintrc 21B
  206. Rebot/node_modules/ddp.js/.npmignore 64B
  207. Rebot/node_modules/ddp.js/.travis.yml 227B
  208. Rebot/node_modules/ddp.js/bower.json 499B
  209. Rebot/node_modules/ddp.js/gulpfile.js 206B
  210. Rebot/node_modules/ddp.js/package.json 1.24KB
  211. Rebot/node_modules/ddp.js/README.md 5KB
  212. Rebot/node_modules/ddp.js/src/
  213. Rebot/node_modules/ddp.js/src/ddp.js 8.6KB
  214. Rebot/node_modules/ddp.js/test/
  215. Rebot/node_modules/ddp.js/test/ddp.unit.js 29.33KB
  216. Rebot/node_modules/ddp.js/test/karma.conf.js 1.91KB
  217. Rebot/node_modules/ddp.js/test/mocks/
  218. Rebot/node_modules/ddp.js/test/mocks/sockjs.js 2.32KB
  219. Rebot/node_modules/ddp.js/test/unit/
  220. Rebot/node_modules/ddp.js/test/unit/00.main.unit.js 2.35KB
  221. Rebot/node_modules/ddp.js/test/unit/01.connect.unit.js 2.1KB
  222. Rebot/node_modules/ddp.js/test/unit/02.method.unit.js 1.43KB
  223. Rebot/node_modules/ddp.js/test/unit/03.sub.unit.js 1.5KB
  224. Rebot/node_modules/ddp.js/test/unit/04.unsub.unit.js 404B
  225. Rebot/node_modules/ddp.js/test/unit/05.on.unit.js 408B
  226. Rebot/node_modules/ddp.js/test/unit/06.off.unit.js 522B
  227. Rebot/node_modules/ddp.js/test/unit/07._emit.unit.js 1.01KB
  228. Rebot/node_modules/ddp.js/test/unit/08._send.unit.js 1.55KB
  229. Rebot/node_modules/ddp.js/test/unit/09._try_reconnect.unit.js 1.29KB
  230. Rebot/node_modules/ddp.js/test/unit/10._on_result.unit.js 2.41KB
  231. Rebot/node_modules/ddp.js/test/unit/11._on_updated.unit.js 1.62KB
  232. Rebot/node_modules/ddp.js/test/unit/12._on_nosub.unit.js 2.34KB
  233. Rebot/node_modules/ddp.js/test/unit/13._on_ready.unit.js 1.56KB
  234. Rebot/node_modules/ddp.js/test/unit/14._on_error.unit.js 369B
  235. Rebot/node_modules/ddp.js/test/unit/15._on_connected.unit.js 1.97KB
  236. Rebot/node_modules/ddp.js/test/unit/16._on_failed.unit.js 536B
  237. Rebot/node_modules/ddp.js/test/unit/17._on_added.unit.js 369B
  238. Rebot/node_modules/ddp.js/test/unit/18._on_removed.unit.js 377B
  239. Rebot/node_modules/ddp.js/test/unit/19._on_changed.unit.js 377B
  240. Rebot/node_modules/ddp.js/test/unit/20._on_socket_close.unit.js 1.08KB
  241. Rebot/node_modules/ddp.js/test/unit/21._on_socket_error.unit.js 527B
  242. Rebot/node_modules/ddp.js/test/unit/22._on_socket_open.unit.js 436B
  243. Rebot/node_modules/ddp.js/test/unit/23._on_socket_message.unit.js 2.84KB
  244. Rebot/node_modules/debug/
  245. Rebot/node_modules/debug/LICENSE 1.13KB
  246. Rebot/node_modules/debug/package.json 1.44KB
  247. Rebot/node_modules/debug/README.md 22.44KB
  248. Rebot/node_modules/debug/src/
  249. Rebot/node_modules/debug/src/browser.js 6.13KB
  250. Rebot/node_modules/debug/src/common.js 6.41KB
  251. Rebot/node_modules/debug/src/index.js 324B
  252. Rebot/node_modules/debug/src/node.js 4.83KB
  253. Rebot/node_modules/faye-websocket/
  254. Rebot/node_modules/faye-websocket/CHANGELOG.md 3.55KB
  255. Rebot/node_modules/faye-websocket/lib/
  256. Rebot/node_modules/faye-websocket/lib/faye/
  257. Rebot/node_modules/faye-websocket/lib/faye/eventsource.js 3.82KB
  258. Rebot/node_modules/faye-websocket/lib/faye/websocket/
  259. Rebot/node_modules/faye-websocket/lib/faye/websocket/api/
  260. Rebot/node_modules/faye-websocket/lib/faye/websocket/api/event.js 542B
  261. Rebot/node_modules/faye-websocket/lib/faye/websocket/api/event_target.js 669B
  262. Rebot/node_modules/faye-websocket/lib/faye/websocket/api.js 5.48KB
  263. Rebot/node_modules/faye-websocket/lib/faye/websocket/client.js 2.76KB
  264. Rebot/node_modules/faye-websocket/lib/faye/websocket.js 1.33KB
  265. Rebot/node_modules/faye-websocket/LICENSE.md 570B
  266. Rebot/node_modules/faye-websocket/package.json 1.17KB
  267. Rebot/node_modules/faye-websocket/README.md 11.2KB
  268. Rebot/node_modules/follow-redirects/
  269. Rebot/node_modules/follow-redirects/debug.js 330B
  270. Rebot/node_modules/follow-redirects/http.js 38B
  271. Rebot/node_modules/follow-redirects/https.js 39B
  272. Rebot/node_modules/follow-redirects/index.js 20.3KB
  273. Rebot/node_modules/follow-redirects/LICENSE 1.13KB
  274. Rebot/node_modules/follow-redirects/package.json 1.31KB
  275. Rebot/node_modules/follow-redirects/README.md 6.46KB
  276. Rebot/node_modules/http-parser-js/
  277. Rebot/node_modules/http-parser-js/http-parser.d.ts 4.57KB
  278. Rebot/node_modules/http-parser-js/http-parser.js 13.51KB
  279. Rebot/node_modules/http-parser-js/LICENSE.md 5.17KB
  280. Rebot/node_modules/http-parser-js/package.json 939B
  281. Rebot/node_modules/http-parser-js/README.md 1.85KB
  282. Rebot/node_modules/lru-cache/
  283. Rebot/node_modules/lru-cache/index.js 10.9KB
  284. Rebot/node_modules/lru-cache/LICENSE 780B
  285. Rebot/node_modules/lru-cache/package.json 978B
  286. Rebot/node_modules/lru-cache/README.md 5.47KB
  287. Rebot/node_modules/ms/
  288. Rebot/node_modules/ms/index.js 3.11KB
  289. Rebot/node_modules/ms/license.md 1.07KB
  290. Rebot/node_modules/ms/package.json 742B
  291. Rebot/node_modules/ms/readme.md 2.05KB
  292. Rebot/node_modules/node-rest-client/
  293. Rebot/node_modules/node-rest-client/debug.bat 58B
  294. Rebot/node_modules/node-rest-client/debug.sh 597B
  295. Rebot/node_modules/node-rest-client/lib/
  296. Rebot/node_modules/node-rest-client/lib/node-rest-client.js 28.42KB
  297. Rebot/node_modules/node-rest-client/lib/nrc-parser-manager.js 3.98KB
  298. Rebot/node_modules/node-rest-client/lib/nrc-serializer-manager.js 5.17KB
  299. Rebot/node_modules/node-rest-client/LICENSE 1.08KB
  300. Rebot/node_modules/node-rest-client/package.json 608B
  301. Rebot/node_modules/node-rest-client/readme.md 30.05KB
  302. Rebot/node_modules/node-rest-client/test/
  303. Rebot/node_modules/node-rest-client/test/mocha.opts 72B
  304. Rebot/node_modules/node-rest-client/test/server/
  305. Rebot/node_modules/node-rest-client/test/server/message.json 913B
  306. Rebot/node_modules/node-rest-client/test/server/message.xml 1.52KB
  307. Rebot/node_modules/node-rest-client/test/server/mock-server.js 5.18KB
  308. Rebot/node_modules/node-rest-client/test/specs/
  309. Rebot/node_modules/node-rest-client/test/specs/TestErrorHandlers.js 1.1KB
  310. Rebot/node_modules/node-rest-client/test/specs/TestFollowsRedirect.js 1.56KB
  311. Rebot/node_modules/node-rest-client/test/specs/TestGETMethod.js 6.29KB
  312. Rebot/node_modules/node-rest-client/test/specs/TestPOSTMethod.js 7.22KB
  313. Rebot/node_modules/node-rest-client/test/specs/TestRIOFacade.js 9.54KB
  314. Rebot/node_modules/node-rest-client/test/test-proxy.js 2.39KB
  315. Rebot/node_modules/node-rest-client/test.bat 8B
  316. Rebot/node_modules/node-rest-client/test.sh 19B
  317. Rebot/node_modules/pseudomap/
  318. Rebot/node_modules/pseudomap/LICENSE 780B
  319. Rebot/node_modules/pseudomap/map.js 289B
  320. Rebot/node_modules/pseudomap/package.json 708B
  321. Rebot/node_modules/pseudomap/pseudomap.js 2.49KB
  322. Rebot/node_modules/pseudomap/README.md 2.17KB
  323. Rebot/node_modules/pseudomap/test/
  324. Rebot/node_modules/pseudomap/test/basic.js 1.92KB
  325. Rebot/node_modules/q/
  326. Rebot/node_modules/q/CHANGES.md 30.14KB
  327. Rebot/node_modules/q/LICENSE 1.08KB
  328. Rebot/node_modules/q/package.json 1.87KB
  329. Rebot/node_modules/q/q.js 64.54KB
  330. Rebot/node_modules/q/queue.js 976B
  331. Rebot/node_modules/q/README.md 25.64KB
  332. Rebot/node_modules/safe-buffer/
  333. Rebot/node_modules/safe-buffer/index.d.ts 8.71KB
  334. Rebot/node_modules/safe-buffer/index.js 1.69KB
  335. Rebot/node_modules/safe-buffer/LICENSE 1.08KB
  336. Rebot/node_modules/safe-buffer/package.json 1.08KB
  337. Rebot/node_modules/safe-buffer/README.md 19.67KB
  338. Rebot/node_modules/sax/
  339. Rebot/node_modules/sax/lib/
  340. Rebot/node_modules/sax/lib/sax.js 44.38KB
  341. Rebot/node_modules/sax/LICENSE 2.02KB
  342. Rebot/node_modules/sax/package.json 703B
  343. Rebot/node_modules/sax/README.md 8.4KB
  344. Rebot/node_modules/websocket-driver/
  345. Rebot/node_modules/websocket-driver/CHANGELOG.md 4.17KB
  346. Rebot/node_modules/websocket-driver/lib/
  347. Rebot/node_modules/websocket-driver/lib/websocket/
  348. Rebot/node_modules/websocket-driver/lib/websocket/driver/
  349. Rebot/node_modules/websocket-driver/lib/websocket/driver/base.js 4.73KB
  350. Rebot/node_modules/websocket-driver/lib/websocket/driver/client.js 4.36KB
  351. Rebot/node_modules/websocket-driver/lib/websocket/driver/draft75.js 3.15KB
  352. Rebot/node_modules/websocket-driver/lib/websocket/driver/draft76.js 3.23KB
  353. Rebot/node_modules/websocket-driver/lib/websocket/driver/headers.js 850B
  354. Rebot/node_modules/websocket-driver/lib/websocket/driver/hybi/
  355. Rebot/node_modules/websocket-driver/lib/websocket/driver/hybi/frame.js 394B
  356. Rebot/node_modules/websocket-driver/lib/websocket/driver/hybi/message.js 771B
  357. Rebot/node_modules/websocket-driver/lib/websocket/driver/hybi.js 14.57KB
  358. Rebot/node_modules/websocket-driver/lib/websocket/driver/proxy.js 2.7KB
  359. Rebot/node_modules/websocket-driver/lib/websocket/driver/server.js 3.3KB
  360. Rebot/node_modules/websocket-driver/lib/websocket/driver/stream_reader.js 1.64KB
  361. Rebot/node_modules/websocket-driver/lib/websocket/driver.js 1.12KB
  362. Rebot/node_modules/websocket-driver/lib/websocket/http_parser.js 3.34KB
  363. Rebot/node_modules/websocket-driver/lib/websocket/streams.js 4.93KB
  364. Rebot/node_modules/websocket-driver/LICENSE.md 570B
  365. Rebot/node_modules/websocket-driver/package.json 1.21KB
  366. Rebot/node_modules/websocket-driver/README.md 13.14KB
  367. Rebot/node_modules/websocket-extensions/
  368. Rebot/node_modules/websocket-extensions/CHANGELOG.md 919B
  369. Rebot/node_modules/websocket-extensions/lib/
  370. Rebot/node_modules/websocket-extensions/lib/parser.js 2.98KB
  371. Rebot/node_modules/websocket-extensions/lib/pipeline/
  372. Rebot/node_modules/websocket-extensions/lib/pipeline/cell.js 1.49KB
  373. Rebot/node_modules/websocket-extensions/lib/pipeline/functor.js 1.56KB
  374. Rebot/node_modules/websocket-extensions/lib/pipeline/index.js 1.49KB
  375. Rebot/node_modules/websocket-extensions/lib/pipeline/pledge.js 816B
  376. Rebot/node_modules/websocket-extensions/lib/pipeline/README.md 24.72KB
  377. Rebot/node_modules/websocket-extensions/lib/pipeline/ring_buffer.js 1.7KB
  378. Rebot/node_modules/websocket-extensions/lib/websocket_extensions.js 4.91KB
  379. Rebot/node_modules/websocket-extensions/LICENSE.md 570B
  380. Rebot/node_modules/websocket-extensions/package.json 1020B
  381. Rebot/node_modules/websocket-extensions/README.md 13.17KB
  382. Rebot/node_modules/xml2js/
  383. Rebot/node_modules/xml2js/lib/
  384. Rebot/node_modules/xml2js/lib/bom.js 235B
  385. Rebot/node_modules/xml2js/lib/builder.js 4.39KB
  386. Rebot/node_modules/xml2js/lib/defaults.js 1.69KB
  387. Rebot/node_modules/xml2js/lib/parser.js 13.52KB
  388. Rebot/node_modules/xml2js/lib/processors.js 760B
  389. Rebot/node_modules/xml2js/lib/xml2js.bc.js 3.26MB
  390. Rebot/node_modules/xml2js/lib/xml2js.js 1.08KB
  391. Rebot/node_modules/xml2js/LICENSE 1.07KB
  392. Rebot/node_modules/xml2js/package.json 3.8KB
  393. Rebot/node_modules/xml2js/README.md 18.39KB
  394. Rebot/node_modules/xmlbuilder/
  395. Rebot/node_modules/xmlbuilder/appveyor.yml 370B
  396. Rebot/node_modules/xmlbuilder/CHANGELOG.md 23.71KB
  397. Rebot/node_modules/xmlbuilder/lib/
  398. Rebot/node_modules/xmlbuilder/lib/Derivation.js 166B
  399. Rebot/node_modules/xmlbuilder/lib/DocumentPosition.js 230B
  400. Rebot/node_modules/xmlbuilder/lib/index.js 1.81KB
  401. Rebot/node_modules/xmlbuilder/lib/NodeType.js 472B
  402. Rebot/node_modules/xmlbuilder/lib/OperationType.js 182B
  403. Rebot/node_modules/xmlbuilder/lib/Utility.js 2.18KB
  404. Rebot/node_modules/xmlbuilder/lib/WriterState.js 165B
  405. Rebot/node_modules/xmlbuilder/lib/XMLAttribute.js 2.72KB
  406. Rebot/node_modules/xmlbuilder/lib/XMLCData.js 1.22KB
  407. Rebot/node_modules/xmlbuilder/lib/XMLCharacterData.js 2.5KB
  408. Rebot/node_modules/xmlbuilder/lib/XMLComment.js 1.24KB
  409. Rebot/node_modules/xmlbuilder/lib/XMLDeclaration.js 1.52KB
  410. Rebot/node_modules/xmlbuilder/lib/XMLDocType.js 5.66KB
  411. Rebot/node_modules/xmlbuilder/lib/XMLDocument.js 7.95KB
  412. Rebot/node_modules/xmlbuilder/lib/XMLDocumentCB.js 17.65KB
  413. Rebot/node_modules/xmlbuilder/lib/XMLDocumentFragment.js 884B
  414. Rebot/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js 1.81KB
  415. Rebot/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js 344B
  416. Rebot/node_modules/xmlbuilder/lib/XMLDOMImplementation.js 1003B
  417. Rebot/node_modules/xmlbuilder/lib/XMLDOMStringList.js 631B
  418. Rebot/node_modules/xmlbuilder/lib/XMLDTDAttList.js 2.4KB
  419. Rebot/node_modules/xmlbuilder/lib/XMLDTDElement.js 1.33KB
  420. Rebot/node_modules/xmlbuilder/lib/XMLDTDEntity.js 3.12KB
  421. Rebot/node_modules/xmlbuilder/lib/XMLDTDNotation.js 1.78KB
  422. Rebot/node_modules/xmlbuilder/lib/XMLDummy.js 947B
  423. Rebot/node_modules/xmlbuilder/lib/XMLElement.js 9.61KB
  424. Rebot/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js 1.58KB
  425. Rebot/node_modules/xmlbuilder/lib/XMLNode.js 24.36KB
  426. Rebot/node_modules/xmlbuilder/lib/XMLNodeFilter.js 1.17KB
  427. Rebot/node_modules/xmlbuilder/lib/XMLNodeList.js 588B
  428. Rebot/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js 1.78KB
  429. Rebot/node_modules/xmlbuilder/lib/XMLRaw.js 1.13KB
  430. Rebot/node_modules/xmlbuilder/lib/XMLStreamWriter.js 7.33KB
  431. Rebot/node_modules/xmlbuilder/lib/XMLStringifier.js 7.33KB
  432. Rebot/node_modules/xmlbuilder/lib/XMLStringWriter.js 1.23KB
  433. Rebot/node_modules/xmlbuilder/lib/XMLText.js 2.18KB
  434. Rebot/node_modules/xmlbuilder/lib/XMLTypeInfo.js 545B
  435. Rebot/node_modules/xmlbuilder/lib/XMLUserDataHandler.js 391B
  436. Rebot/node_modules/xmlbuilder/lib/XMLWriterBase.js 15.65KB
  437. Rebot/node_modules/xmlbuilder/LICENSE 1.08KB
  438. Rebot/node_modules/xmlbuilder/package.json 966B
  439. Rebot/node_modules/xmlbuilder/README.md 2.46KB
  440. Rebot/node_modules/xmlbuilder/typings/
  441. Rebot/node_modules/xmlbuilder/typings/index.d.ts 6.06KB
  442. Rebot/node_modules/yallist/
  443. Rebot/node_modules/yallist/iterator.js 190B
  444. Rebot/node_modules/yallist/LICENSE 780B
  445. Rebot/node_modules/yallist/package.json 681B
  446. Rebot/node_modules/yallist/README.md 4.81KB
  447. Rebot/node_modules/yallist/yallist.js 7.47KB
  448. Rebot/package-lock.json 7.87KB
  449. Rebot/package.json 68B
  450. Rebot/README.md 198B
  451. Rebot/run.ps1 43B
  452. Rebot/SAP/
  453. Rebot/SAP/Database.cs 476B
  454. Rebot/SAP/MO.csproj 573B
  455. Rebot/SAP/MO.sln 1.08KB
  456. Rebot/SAP/Program.cs 2.88KB
0评论
提交 加载更多评论
其他资源 ansible-playbook-roles-nginx
playbook+roles安装nginx整体框架,并有详细配置
短视频去水印等组合微信小程序源码
短视频去水印等组合微信小程序源码,可以结合流量主模式,获得最大化的用户和收益
c语言五子棋源码.zip
c语言五子棋源码.zip
毕业设计-校园一卡通系统
管理员账号/密码:admin/admin 用户账号/密码: 201628562333/123456 运行环境: 最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。 IDE环境: Eclipse,Myeclipse,IDEA都可以 tomcat环境: Tomcat 7.x,8.x,9.x版本均可 硬件环境: windows 7/8/10 1G内存以上 主要功能说明: 管理员角色包含以下功能:管理员登录,用户管理,账单管理,挂失记录管理等功能。 学生用户角色包含以下功能:用户登录,查询消费记录,充值余额,挂失校园卡,个人信息修改等功能。 用了技术框架: HTML+CSS+JavaScript+jsp+mysql tips: 需要链接数据库的jsp程序,用到的数据库保存在源码码头的数据库平台上,为了防止童鞋们不注意删除数据,会每2小时还原一次,有较低的概率在你们演示的时候,刚插入或者刚更新,数据库就被还原了,是正常现象,你们下载到本地后,用你们自己的数据库就可以了~^_^。 适用于: 由于本程序规模不大,可供课程设计,毕业设计学习演示之用
4444324324324
4444324324324
java 2024面试题
2024java面试题
赤峰学院附属中学班级成绩(1).zip
赤峰学院附属中学班级成绩(1).zip
Beyond-Compare-Pro-V5-X64
文件夹和文件对比工具。使用他可以很方便的对比出两个文件夹或者文件的不同之处。并把相差的每一个字节用颜色加以表示,查看方便,并且支持多种规则对比。不仅仅限于两个文件,Beyond Compare 还可以比较电脑上两个目录中的内容,FTP地址的内容,以及文本档案的内容包括开发者们所用的UTF-8、html、Delphi源程序等文本档案的不同之处。