Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@huksley/request
Advanced tools
[gist-sized] Zero dependency, single-file NodeJS 14+ HTTP(s) request module
Use as a dependency or copy-paste directly into your code. Zero-dependency alternative of fetch for NodeJS (with different API).
const { request } = require("@huksley/request");
request("https://jsonip.com").then((res) => {
console.info("Your IP", res.body.ip, "headers", res.headers);
});
ESM
import { request } from "@huksley/request";
const res = await request("https://jsonip.com");
console.info("Your IP", res.body.ip, "headers", res.headers);
FAQs
[gist-sized] Zero dependency, single-file NodeJS 14+ HTTP(s) request module
We found that @huksley/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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.