
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
eep-transcoder
Advanced tools
and Enocean Equipment Profile (EEP) encoder and decoder that can transform between binary and json representation.
a module for encoding and decoding Enocean Equipment Profile (EEP) Telegrams. This is a work in progress. For now only RORG a5,d5 and f6 (no VLD) is supported...
The API will most likely still change a lot
npm i -S eep-transcoder
you can use this module in both node.js and in the browser.
var EnoceanTelegram = require("eep_transcoder")
<script src="eep_transcoder.min.js"></script>
the encode function expects two parameters. one json representation of the telegram to be encoded, and the eep according to which it should be encoded.
var tel ={
decoded:{
TMP:{value:20}
},
_senderId: "aabbccdd"
}
var enc = EnocenTelegram.encode(tel,"a5-02-03")
console.log(enc.encoded)
the telegram will be filled with usefull defaults. So you only need to provide the data you want to change. this will most probably be the senderId and the data part which for json is stored in the decoded
field.
var tel = "55000a0701eba5ff0385080006be370001ffffffff4400c5"
var dec = EnocenTelegram.decode(tel,"a5-02-03")
console.log(dec.decoded)
FAQs
and Enocean Equipment Profile (EEP) encoder and decoder that can transform between binary and json representation.
The npm package eep-transcoder receives a total of 11 weekly downloads. As such, eep-transcoder popularity was classified as not popular.
We found that eep-transcoder 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.