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.
fdy-scraping
Advanced tools
`fdy-scraping` is a versatile HTTP client designed for making API requests with support for proxy configuration, debugging, and detailed error handling. It utilizes the [`got-scraping`](https://github.com/apify/got-scraping) library for HTTP operations.
fdy-scraping
is a versatile HTTP client designed for making API requests with support for proxy configuration, debugging, and detailed error handling. It utilizes the got-scraping
library for HTTP operations.
To use fdy-scraping
, you need to install the got-scraping
library. Run the following command to install it via npm:
npm install fdy-scraping
Import fdy-scraping
into your Node.js application:
const fdy = require("fdy-scraping");
OR
import fdy from "fdy-scraping";
Create a new client instance with custom options:
create(options?: FetchClientOptions, debug?: boolean): FdyFetchClient;
const client = fdy.create(
{
headers: { Authorization: "Bearer your-token" },
proxy: {
ip: "127.0.0.1",
port: 8080,
protocol: "http",
username: "username",
password: "password",
},
baseUrl: "https://api.example.com",
},
true
); // Set debug mode to true
You can use the client to make various types of HTTP requests:
request(url, method, body = undefined, headers = undefined, options = undefined)
client
.request("/endpoint", "POST", undefined, { Accept: "application/json" })
.then((response) => {
console.log(response.data); // Response data
})
.catch((error) => {
console.error("Error:", error.message);
});
get(url, headers = {}, options = {}, enableDebug = false)
client
.get("/endpoint", { Accept: "application/json" })
.then((response) => {
console.log(response.data); // Response data
})
.catch((error) => {
console.error("Error:", error.message);
});
post(url, body = undefined, headers = {}, options = {}, enableDebug = false)
client
.post("/endpoint", JSON.stringify({ key: "value" }), {
"Content-Type": "application/json",
})
.then((response) => {
console.log(response.data); // Response data
})
.catch((error) => {
console.error("Error:", error.message);
});
put(url, body = undefined, headers = {}, options = {}, enableDebug = false)
client
.put("/endpoint", JSON.stringify({ key: "new-value" }), {
"Content-Type": "application/json",
})
.then((response) => {
console.log(response.data); // Response data
})
.catch((error) => {
console.error("Error:", error.message);
});
delete(url, headers = {}, options = {}, enableDebug = false)
client
.delete("/endpoint", { Accept: "application/json" })
.then((response) => {
console.log(response.data); // Response data
})
.catch((error) => {
console.error("Error:", error.message);
});
fdy-scraping
provides detailed error information through the FdyFetchClientError
class. Errors include the status code, response data, and request configuration.
client.get("/invalid-endpoint").catch((error) => {
if (error instanceof fdy.FdyFetchClientError) {
console.error("Custom Error Details:");
console.error("Status:", error.status);
console.error("Response:", error.response);
console.error("Config:", error.config);
} else {
console.error("General Error:", error.message);
}
});
headers
: Optional object containing default headers for requests.proxy
: Optional object for proxy configuration.
ip
: IP address of the proxy server.port
: Port of the proxy server.protocol
: Protocol used by the proxy (http
or https
).username
: Optional username for proxy authentication.password
: Optional password for proxy authentication.baseUrl
: Optional base URL for requests.Debug mode can be enabled by passing true
as the second argument to FdyFetchClient.create
. When enabled, additional error information will be logged to the console.
This project is licensed under the MIT License - see the LICENSE file for details.
Feel free to adjust the paths, options, or methods according to your actual implementation and package setup.
FAQs
`fdy-scraping` is a versatile HTTP client designed for making API requests with support for proxy configuration, debugging, and detailed error handling. It utilizes the [`got-scraping`](https://github.com/apify/got-scraping) library for HTTP operations.
The npm package fdy-scraping receives a total of 81 weekly downloads. As such, fdy-scraping popularity was classified as not popular.
We found that fdy-scraping 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.