Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
typed-request
Advanced tools
A typed HTTP client for node.js.
Type safe response with generic
Request can be made by passing RequestConfig
request(config: RequestConfig);
const config = {
url: "https://example.com/users",
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({ name: "foo" })
};
const user: User = await request<User>(config);
import { HttpMethod } from "typed-request";
{
method: HttpMethod.Get;
}
{
headers: {
Authorization: "Bearer foo";
}
}
{
body: {
param0: "value0";
}
}
{
query: {
param0: "value0";
}
}
{
auth: { username: "foo", password: "bar" }
}
If bodyValidator
returns false
, a request will return Promise reject immediately.
{
bodyValidator: (body: Object) => body.length > 0;
}
responseProcessor
is a function which can process response data what you want with type definition.
errorProcessor
is a function which can process error response which is returend as Promise reject.
You can specify a number of retring requests.
If the request takes longer than timeout you specified, request should be aborted. Default value is 1000.
You can specify if output a cURL command for per request. True is default.
const config = {
method: HttpMethod.Post,
body: JSON.stringify({
rating: 5,
comment: "cool!"
}),
headers: {
Authorization: "Bearer foo",
"Content-Type": "application/json"
}
};
request<Review>(config);
curl -X POST -H "Authorization: Bearer foo" -H "Content-Type: application/json" -d '{"rating": 5, "comment": "cool!"}' http://somesite.com/some.json
const r = await request<User[]>({
url: "https://example.com/users"
});
r.abort();
FAQs
A typed HTTP client written in TypeScript
The npm package typed-request receives a total of 1 weekly downloads. As such, typed-request popularity was classified as not popular.
We found that typed-request 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.