Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@serialport/parser-delimiter
Advanced tools
See our api docs https://node-serialport.github.io/parsers/DelimiterParser.html
@serialport/parser-delimiter is a parser for the serialport library that allows you to split data into chunks based on a specified delimiter. This is particularly useful for processing data streams where messages are separated by a specific character or sequence of characters.
Basic Usage
This code demonstrates how to set up a basic serial port connection and use the delimiter parser to split incoming data based on newline characters.
const SerialPort = require('serialport');
const Delimiter = require('@serialport/parser-delimiter');
const port = new SerialPort('/dev/tty-usbserial1');
const parser = port.pipe(new Delimiter({ delimiter: '\n' }));
parser.on('data', data => {
console.log('Received data:', data.toString());
});
Custom Delimiter
This example shows how to use a custom delimiter (in this case, a carriage return followed by a line feed) to split incoming data.
const SerialPort = require('serialport');
const Delimiter = require('@serialport/parser-delimiter');
const port = new SerialPort('/dev/tty-usbserial1');
const parser = port.pipe(new Delimiter({ delimiter: Buffer.from([0x0D, 0x0A]) })); // Carriage return and line feed
parser.on('data', data => {
console.log('Received data:', data.toString());
});
Handling Binary Data
This example demonstrates how to handle binary data streams by using a custom binary delimiter.
const SerialPort = require('serialport');
const Delimiter = require('@serialport/parser-delimiter');
const port = new SerialPort('/dev/tty-usbserial1');
const parser = port.pipe(new Delimiter({ delimiter: Buffer.from([0xFF]) })); // Custom binary delimiter
parser.on('data', data => {
console.log('Received binary data:', data);
});
See our api docs https://node-serialport.github.io/parsers/DelimiterParser.html
Version 1.0.5
FAQs
See our api docs https://serialport.io/docs/api-parser-delimiter
We found that @serialport/parser-delimiter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.