node-byline
node-byline copied to clipboard
Line-by-line Stream reader for node.js
https://nodejs.org/docs/latest-v14.x/api/readline.html#readline_example_read_file_stream_line_by_line node.js docs say >Currently, for await...of loop can be a bit slower. If async / await flow and speed are both essential, a mixed approach can be applied: and...
This module will cause Node to print warnings in specific conditions. `Buffer.from` should be preferred if it's available.
Bumps [request](https://github.com/request/request) from 2.27.0 to 2.88.0. Changelog *Sourced from [request's changelog](https://github.com/request/request/blob/master/CHANGELOG.md).* > ### v2.88.0 (2018/08/10) > - [#2996](https://github-redirect.dependabot.com/request/request/pull/2996) fix(uuid): import versioned uuid ([@​kwonoj](https://github.com/kwonoj)) > - [#2994](https://github-redirect.dependabot.com/request/request/pull/2994) Update to oauth-sign 0.9.0...
Hi @jahewson Wondering if you accept this PR that supports a user-supplied regular expression for matching new lines. My use case is that I do not wish to match some...
@jahewson this is a simple PR to fix the current warnings about how the node `Buffer` api is being currently used into this library. This will also close https://github.com/jahewson/node-byline/issues/49 Can...
It seems byline is just calling toString() on buffers without correctly respecting unicode encoding rules. Since the buffers going into transform can be on any arbitrary position inside the original...
byline with `keepEmptyLines: true` behaves slightly differently than most line readers I've encountered, including node's `readline` module. I created sample.txt by running: ```bash echo foo> sample.txt echo bar>> sample.txt echo>>...
as suggested by @matthiasg in #45. Includes a test that reproduces the issue.
I get no output, no errors, no way to debug. Nothing.
I have an issue when writing a file in stream mode. The `EOL`seems not to be respected when writing a new line. This is the sync version, that works as...