Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
coap-packet
Advanced tools
CoAP-Packet is an highly experimental generator and parser of CoAP packets.
It does not provide any CoAP semantics, it just parses the protocol.
This has been tested only on node v0.8.
$: npm install coap-packet --save
The following example opens an UDP client and UDP server and sends a CoAP message between them:
const dgram = require('dgram')
, coapPacket = require('coap-packet')
, parse = packet.parse
, generate = packet.generate
, payload = new Buffer('Hello World')
, message = generate({ payload: payload })
, port = 41234
, client = dgram.createSocket("udp4")
, server = dgram.createSocket("udp4")
server.bind(port, function() {
client.send(message, 0, message.length, 41234, "localhost", function(err, bytes) {
client.close()
})
})
server.on('message', function(data) {
console.log(parse(data).payload.toString())
server.close()
})
The parse
function takes a buffer and returns a JS object that
follows a particular format.
The generate
function takes a JS object that
follows a particular format and transform it into
a CoAP packet.
The JS representation of a CoAP packet is:
{
token: new Buffer(4)
, code: '0.01'
, messageId: 42
, options: [{
name: 'If-Match'
, value: new Buffer(5)
}, {
name: 'Uri-Path'
, value: new Buffer('hello')
}]
}
Instead of numerical codes, it also supports humanized names, e.g.
GET
, POST
, PUT
, DELETE
.
Coap-Packet is only possible due to the excellent work of the following contributors:
Matteo Collina | GitHub/mcollina | Twitter/@matteocollina |
---|
Copyright (c) 2013 CoAP-Packet contributors (listed above).
Coap-Packet is licensed under an MIT +no-false-attribs license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.
FAQs
Generate and Parse CoAP packets
We found that coap-packet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.