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.
fetch-request-browser
Advanced tools
The fetch-request-browser package makes working with external APIs simple and efficient. This intuitive wrapper leverages the power of the Fetch API, providing a clean and concise interface for your API interactions.
The fetch-request-browser
package makes working with external APIs simple and efficient. This intuitive wrapper leverages the power of the Fetch API, providing a clean and concise interface for your API interactions.
If you are working on a node-based environment, make use of fetch-request-node instead.
Install the package:
$ npm install -S fetch-request-browser
import { send } from 'fetch-request-browser';
await send(
'https://httpbin.org/get',
{
requestOptions: {
method: 'GET'
}
},
[3, 5, 10]
);
// {
// code: 200,
// headers: Headers {
// date: 'Tue, 04 Jun 2024 18:52:29 GMT',
// 'content-type': 'application/json',
// 'content-length': '407',
// connection: 'keep-alive',
// server: 'gunicorn/19.9.0',
// 'access-control-allow-origin': '*',
// 'access-control-allow-credentials': 'true'
// },
// data: {
// args: {},
// headers: {
// Accept: 'application/json',
// 'Accept-Encoding': 'br, gzip, deflate',
// 'Accept-Language': '*',
// 'Content-Type': 'application/json',
// Host: 'httpbin.org',
// 'Sec-Fetch-Mode': 'cors',
// 'User-Agent': 'node',
// 'X-Amzn-Trace-Id': '...'
// },
// origin: '...',
// url: 'https://httpbin.org/get'
// }
// }
Build and send an HTTP Request (any method):
send(
input: IRequestInput,
options?: Partial<IOptions>,
retryDelaySchedule?: number[],
): Promise<IRequestResponse>
Build and send a GET
HTTP Request:
sendGET(
input: IRequestInput,
options?: Partial<IOptions>,
retryDelaySchedule?: number[],
): Promise<IRequestResponse>
Build and send a POST
HTTP Request:
sendPOST(
input: IRequestInput,
options?: Partial<IOptions>,
retryDelaySchedule?: number[],
): Promise<IRequestResponse>
Build and send a PUT
HTTP Request:
sendPUT(
input: IRequestInput,
options?: Partial<IOptions>,
retryDelaySchedule?: number[],
): Promise<IRequestResponse>
Build and send a PATCH
HTTP Request:
sendPATCH(
input: IRequestInput,
options?: Partial<IOptions>,
retryDelaySchedule?: number[],
): Promise<IRequestResponse>
Build and send a DELETE
HTTP Request:
sendDELETE(
input: IRequestInput,
options?: Partial<IOptions>,
retryDelaySchedule?: number[],
): Promise<IRequestResponse>
# Unit Tests
$ npm run test:unit
# Integration Tests
$ npm run test:integration
Install dependencies:
$ npm install
Build the library:
$ npm start
Publish to npm
:
$ npm publish
FAQs
The fetch-request-browser package makes working with external APIs simple and efficient. This intuitive wrapper leverages the power of the Fetch API, providing a clean and concise interface for your API interactions.
The npm package fetch-request-browser receives a total of 7 weekly downloads. As such, fetch-request-browser popularity was classified as not popular.
We found that fetch-request-browser demonstrated a healthy version release cadence and project activity because the last version was released less than 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’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.