Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@types/range-parser
Advanced tools
TypeScript definitions for range-parser
The @types/range-parser package provides TypeScript type definitions for the range-parser package. This allows TypeScript developers to use the range-parser package in a type-safe manner, ensuring that they are using the API correctly according to the expected types. The range-parser package is used to parse HTTP Range header fields, which are commonly used to specify a portion of a document to be returned by the server, enabling efficient partial data fetching.
Parsing Range Headers
This feature allows you to parse the 'Range' header from HTTP requests. The example demonstrates parsing a range string 'bytes=0-499' assuming the total size is 1000. The result would be an array indicating the start and end of the range requested.
import rangeParser from 'range-parser';
const result = rangeParser(1000, 'bytes=0-499');
Similar to @types/range-parser, this package deals with content ranges in HTTP headers. However, it focuses on generating and parsing Content-Range headers for responses, complementing the functionality provided by range-parser for requests.
npm install --save @types/range-parser
This package contains type definitions for range-parser (https://github.com/jshttp/range-parser).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/range-parser.
/**
* When ranges are returned, the array has a "type" property which is the type of
* range that is required (most commonly, "bytes"). Each array element is an object
* with a "start" and "end" property for the portion of the range.
*
* @returns `-1` when unsatisfiable and `-2` when syntactically invalid, ranges otherwise.
*/
declare function RangeParser(
size: number,
str: string,
options?: RangeParser.Options,
): RangeParser.Result | RangeParser.Ranges;
declare namespace RangeParser {
interface Ranges extends Array<Range> {
type: string;
}
interface Range {
start: number;
end: number;
}
interface Options {
/**
* The "combine" option can be set to `true` and overlapping & adjacent ranges
* will be combined into a single range.
*/
combine?: boolean | undefined;
}
type ResultUnsatisfiable = -1;
type ResultInvalid = -2;
type Result = ResultUnsatisfiable | ResultInvalid;
}
export = RangeParser;
These definitions were written by Tomek Łaziuk.
FAQs
TypeScript definitions for range-parser
The npm package @types/range-parser receives a total of 18,342,743 weekly downloads. As such, @types/range-parser popularity was classified as popular.
We found that @types/range-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.