
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
##bitlash-js parse and send commands to bitlash devices via a stream interface like serialport
###INSTALL
npm install bitlash-js
####Use: See examples folder, but the steps are simple. You need a stream object, commonly serialport with the correct speed for your chip (115200 for pinoccio) and path to your device :
var SerialPort = require("serialport");
var serialPort = new SerialPort.SerialPort(path, {
baudrate: baud
});
With serialport, you need to wait for your open event, but then you can send an empty command to make sure bitlash is listening
var Bitlash = require('bitlash-js');
Bitlash.send(serialPort, function(error){
if(error) throw error;
});
Then send away. results is an array of strings, broken up by new line with your echoed command and the prompt removed. For commands that have no return like led.on its an empty array.
var opt = {
timeout: 5000,
cmd: 'led.on'
};
Bitlash.send(serialPort, function(error, results){
if(error) throw error;
});
###CHANGELOG 0.0.1 forked from stk500 for its serial parser style
0.1.0 working implementation with tests
0.2.0 add a newline to parse regex to allow token in text
FAQs
bitlash command parser
The npm package bitlash-js receives a total of 0 weekly downloads. As such, bitlash-js popularity was classified as not popular.
We found that bitlash-js 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.