
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
read-chunk
Advanced tools
Read a chunk from a file
Because the built-in way requires way too much boilerplate.
npm install read-chunk
import {readChunk} from 'read-chunk';
// foo.txt => hello
await readChunk('foo.txt', {length: 3, startPosition: 1});
//=> 'ell'
Returns a Promise<Uint8Array>
with the read chunk.
Returns a Uint8Array
with the read chunk.
Type: string
Type: number
The number of bytes to read.
Type: number
The position to start reading from.
The 'fs-extra' package extends the native Node.js 'fs' module with additional methods, including methods for reading and writing files. While it does not specifically focus on reading chunks, it provides a more comprehensive set of file system utilities.
The 'node-buffer' package provides utilities for working with binary data directly in Node.js. It allows for more granular control over reading and writing data, including reading specific chunks of a file.
The 'file-type' package is used to detect the file type of a buffer or stream. It often uses 'read-chunk' internally to read the first few bytes of a file for type detection. While its primary focus is on file type detection, it shares the functionality of reading specific chunks of a file.
FAQs
Read a chunk from a file
The npm package read-chunk receives a total of 605,160 weekly downloads. As such, read-chunk popularity was classified as popular.
We found that read-chunk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.