
Product
Introducing Supply Chain Attack Campaigns Tracking in the Socket Dashboard
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.
random-access-http
Advanced tools
Continuous reading from a http(s) url using random offsets and lengths
npm install random-access-http
Peers in a distributed system tend to come and go over a short period of time in many common p2p scenarios, especially when you are giving away a file without incentivizing the swarm to seed the file for a long time. There are also an abundance of free cloud hosts that let you host large files over http.
This module provides you random access to a file hosted over http so that it can be used by a client in a distributed system (such as hypercore or hyperdrive) to acquire parts of the file for itself and the other peers in the swarm.
var randomAccessHTTP = require('random-access-http')
var file = randomAccessHTTP('http://example.com/somefile.mp4')
// Read 10 bytes at an offset of 5
file.read(5, 10, function(err, buffer) {
console.log(buffer)
file.close(function() {
console.log('http keepalive agents and sockets destroyed')
})
})
file will use a keepalive agent to reduce the number http requests needed for the session. When you are done you should call file.close() to destroy the agent.
var file = randomAccessHTTP(url, [options])Create a new 'file' that reads from the provided url. The url can be either http, https or a relative path if url is set in options.
Options include:
{
url: string // Optionsal. The base url if first argument is relative
verbose: boolean, // Optional. Default: false.
timeout: number, // Optional. Default: 60000
maxRedirects: number, // Optional. Default: 10
maxContentLength: number, // Optional. Default: 50MB
strict: true, // When false, will accept non-ranged response (it will slice the response to the requested offset/length)
}
file.write(offset, buffer, [callback])Not implemented! Please let us know if you have opinions on how to implement this. This will silently fail with no data being writen.
file.read(offset, length, callback)Read a buffer at a specific offset. Callback is called with the buffer read.
By default, this will fail if the server returns byte ranges different than what is requested.
If you want to support uncooperative static file servers (that doesn't use ranges), pass the strict with a falsy value.
file.close([callback])Close outstanding http keepalive agent sockets.
file.on('open')Emitted when the url has been checked to support range requests and the keep-alive agent has been created.
file.on('close')Emitted after the keepalive agent and its associated sockets have been destroyed.
FAQs
A random access interface for files served over http
The npm package random-access-http receives a total of 1 weekly downloads. As such, random-access-http popularity was classified as not popular.
We found that random-access-http demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.

Product
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.

Security News
Node.js 25.4.0 makes require(esm) stable, formalizing CommonJS and ESM compatibility across supported Node versions.