node-coap-client icon indicating copy to clipboard operation
node-coap-client copied to clipboard

Clientside implementation of the CoAP protocol with DTLS support

Results 10 node-coap-client issues
Sort by recently updated
recently updated
newest added

Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 16.18.11 to 18.15.11. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=16.18.11&new-version=18.15.11)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [rimraf](https://github.com/isaacs/rimraf) from 3.0.2 to 4.4.1. Changelog Sourced from rimraf's changelog. 4.4 Provide Dirent or Stats object as second argument to filter 4.3 Return boolean indicating whether the path was...

dependencies

Bumps [sinon](https://github.com/sinonjs/sinon) from 13.0.2 to 15.0.3. Changelog Sourced from sinon's changelog. 15.0.3 b775f1b4 Avoid tampering with globals and other modules' exports in tests (#2504) (Carl-Erik Kopseng) 477064b6 fix: make it...

dependencies

Bumps [mocha](https://github.com/mochajs/mocha) and [@types/mocha](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mocha). These dependencies needed to be updated together. Updates `mocha` from 9.2.2 to 10.2.0 Release notes Sourced from mocha's releases. v10.2.0 10.2.0 / 2022-12-11 :tada: Enhancements #4945:...

dependencies

Bumps [json-schema](https://github.com/kriszyp/json-schema) from 0.2.3 to 0.4.0. Commits f6f6a3b Use a little more robust method of checking instances ef60987 Update version b62f1da Protect against constructor modification, #84 fb427cd Link to json-schema-org...

dependencies

``` (node:23992) UnhandledPromiseRejectionWarning: Error: Unknown cipher at normalizeReason (D:\Users\legot\Visual\home's\node_modules\node-coap-client\build\lib\DeferredPromise.js:6:16) at Promise.rej [as reject] (D:\Users\legot\Visual\home's\node_modules\node-coap-client\build\lib\DeferredPromise.js:14:34) at Socket.onError (D:\Users\legot\Visual\home's\node_modules\node-coap-client\build\CoapClient.js:1012:29) at Object.onceWrapper (events.js:422:26) at Socket.emit (events.js:315:20) at Socket.killConnection (D:\Users\legot\Visual\home's\node_modules\node-dtls-client\build\dtls.js:227:22) at nextStep (D:\Users\legot\Visual\home's\node_modules\node-dtls-client\build\dtls.js:109:30) at...

This is the first issue on the roadmap to fully support RFC 7959. Receiving fragmented messages is being worked on in #22 so it would be nice to being able...

help wanted
RFC 7959

As defined in https://tools.ietf.org/html/rfc7959#section-2.4, clients can specify a preferred block size for the responses from the CoAP server by using the `Block2` option on a request. This size should be...

help wanted
RFC 7959

When receiving a response (block-wise or not) from the server, containing the `Block1` option, we should remember it for future requests.

help wanted
RFC 7959

When #22 is merged, only a basic implementation of RFC 7959 exists. Inside `CoapClient.onMessage` we should check if the correct (i.e. the requested) message fragment was received and if the...

help wanted
RFC 7959