https://github.com/kalm/bsplit
A dependency-less binary stream splitter
https://github.com/kalm/bsplit
binary javascript node split stream
Last synced: 2 months ago
JSON representation
A dependency-less binary stream splitter
- Host: GitHub
- URL: https://github.com/kalm/bsplit
- Owner: kalm
- Created: 2017-02-08T18:14:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-12T22:37:23.000Z (about 8 years ago)
- Last Synced: 2024-10-29T21:05:59.994Z (7 months ago)
- Topics: binary, javascript, node, split, stream
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bsplit
[](https://www.npmjs.com/package/bsplit)
[](https://travis-ci.org/kalm/bsplit)
[](https://www.npmjs.com/package/bsplit)---
## Status
This project is currently shelved. It was created to reduce the dependency count in Kalm v1 but is no longer required in the newer version. Feel free to contribute or open issues, but you shouldn't expect any updates on this project. Thanks!
## What
A light, dependency-less binary stream splitter for kalm transports.
It acts like a stream, emitting 'data' events, and implementing 'write' and 'end' functions while splitting payloads by a given character or `\n` by default.
Output is a UINT8 array (easier for internal deserialization).
## Usage
```node
const bsplit = require('bsplit');const socket = net.connect(...);
const stream = socket.pipe(bsplit());
stream.on('data', (data) => console.log(String.fromCharCode.apply(null, data)));
```Where `bsplit()` can take an argument corresponding to the byte to split on.
## License
Copyright 2017 Frederic Charette
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.