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.
Tiny library for making http(s) requests.
$ npm i --save tinyreq
:bulb: ProTip: You can install the cli version of this module by running npm i -g tinyreq-cli
const tinyreq = require("tinyreq");
// Make a request to example.com
tinyreq("http://example.com/", (err, body) => {
console.log(err || body);
});
// Make a request with custom headers
tinyreq({
url: "http://example.com/"
, headers: {
"user-agent": "Crawler/1.0"
}
}, (err, body) => {
console.log(err || body);
});
tinyreq(options, callback)
Creates http(s) requests.
options
: A string being the request url or an object containing the following fields:url
(String): The request url.method
(String): The request method.data
(Object): The request POST data.encoding
(String): The response encoding type.data_encoding
(String): The request encoding type.callback
: The callback function called (with error
and data
parameters).data
, error
and end
events.Have an idea? Found a bug? See how to contribute.
Another way to support the development of my open-source modules is to set up a recurring donation, via Patreon. :rocket:
PayPal donations are appreciated too! Each dollar helps.
Thanks! :heart:
If you are using this library in one of your projects, add it in this list. :sparkles:
bandcamp-scraper
(by Simon Thiboutôt)—A scraper for https://bandcamp.combnr
(by Bloggify)—Access resources (e.g. exchange rates) provided by the National Bank of Romania.cheerio-req
—An http request module sending back a Cheerio object.github-colors
—GitHub colors and file extensions mappingjsonrequest
—A tiny library for requesting and getting JSON resources.mun
(by Matheus Alves)—Obter algumas informações de qualquer município do Brasil.page-changed
—Call a function when the page body is changed.tinyreq-cli
—A cli tool for making http(s) requests. CLI for tinyreq.wrabbit
(by jillix)—Wrap scripts by providing the wrapping function.FAQs
Tiny library for making http(s) requests.
We found that tinyreq 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.