This library is deprecated. Please use `useAsync()` from [misc-hooks](https://www.npmjs.com/package/misc-hooks) instead. # Clean Fetch
A faster, clean fetch library
A well-tested CSS minifier
A light-weight module that brings Fetch API to node.js
Clean up error stack traces
An implementation of window.fetch in Node.js using Minipass streams
Opinionated, caching, retrying fetch client
Provides a way to make requests
Blob & File implementation in Node.js, originally from node-fetch.
Universal WHATWG Fetch API for Node, Browsers and React Native
better fetch for Node.js. Works on any JavaScript runtime!
Fetches the contents of a file accross node and browsers.
Cross Platform Smart Fetch Ponyfill
A webpack plugin to remove/clean your build folder(s).
Fetch-based http client for use with npm registry APIs
Isomorphic WHATWG Fetch API, for Node & Browserify
Bull / BullMQ queue command line REPL
HTML5 `FormData` for Browsers and Node.
minimal implementation of a PassThrough stream
A window.fetch polyfill.
This package is part of the [React Native CLI](../../README.md). It contains commands for cleaning the build artifacts.
Extend any fetch library with retry functionality
Synchronous version of the Fetch API
TypeScript definitions for d3-fetch
A modular Ruby library that provides a clean interface for fetching and parsing tender data from zakupki.gov.ru through SOAP-XML API. Returns structured hash results with tender information.
Trackdown is a Ruby gem that allows you to geolocate IP addresses easily. It works out of the box with Cloudflare headers if your Rails app is behind it; or you can also use MaxMind databases (BYOK). The gem offers a clean API for Rails applications to fetch country, city, emoji flag, region, continent, postal code, latitude, longitude and other GeoIP information for any IP address. Supports Cloudflare headers, and MaxMind GeoLite2 databases (offline capable).
A Jekyll generator that writes a .md file alongside each rendered HTML page, so AI agents and crawlers can fetch clean Markdown (with a small machine- friendly frontmatter block) instead of parsing HTML. Configurable per collection.
With just a few lines of code, developers can effortlessly integrate this gem into their projects, enabling seamless retrieval of page titles from HTML documents. Whether you're building web scrapers, crawlers, or any application that requires fetching webpage titles, WebTitle streamlines the process, providing a clean and efficient solution.
# Rack HTTP Pipe Use to pipe directly a remote HTTP file without buffering it. > /!\ Do not work with WebBrick, tested with puma ## Use case * Given a file named #HASH#.pdf on S3 * You want a clean URL and handling the authentication in front of it ``` GET http:/example.com/download Content-Disposition: attachment;filename=name-fetched-from-db.pdf Content-Length Content-Type etc. ``` ## Usage ```ruby get "/" do http_pipe "http://example.com/iso-ubuntu-1404-64bits", { status: 200, headers: { "Content-Type: application/octet-stream", "Content-Disposition: attachment;filename=ubuntu.iso", } } end ``` See the example directory for an example app using sinatra