npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nyre-fetch

v4.0.0

Published

Simple fetch wrapper with a few extra features

Downloads

134

Readme

Nyre-Fetch

Nyre-Fetch is a simple fetch wrapper with a few extra features ⚡️.

📦 Installation

npm install nyre-fetch

🌟 Features

  • Supports everything from Node.js v18 fetch API
  • Simplified API for HTTP methods (get, post, put, delete, & head)
  • Supports stream.pipeTo and stream.pipeThrough
  • Allows setting base URL for all requests

🛠️ Usage

import nyreFetch from "nyre-fetch";

// 1. basic get request
nyreFetch
  .get("https://example.com")
  .then((res) => res.json())
  .then((json) => console.log(json));

// 2. download a file using streams
import fs from "node:fs";

const url = "https://example.com/file.pdf";
const readableStream = await nyreFetch.stream(url);
const writeStream = fs.createWriteStream("./file.pdf");
await readableStream.pipeTo(writeStream);

// 3. set base URL for all requests
import { createClient } from "nyre-fetch";

const client = createClient("https://example.com");

client
  .get("/api/users")
  .then((res) => res.json())
  .then((json) => console.log(json));

📚 API

nyreFetch

An object that exposes HTTP methods (GET, POST, PUT, DELETE, HEAD, and stream) as property references.

fetch

Same global fetch API from node v18, exposed for convenience.

Client

A class that allows setting a base URL for all requests.

import { Client } from "nyre-fetch";

const client = new Client("https://example.com");

createClient

A utility function to create a new Client instance.

const client = createClient("https://example.com");

client
  .get("/api/users")
  .then((res) => res.json())
  .then((json) => console.log(json));

📡 Stream API

The "Node.js way" is to use streams when possible, piping response.body to other streams. It's built on the node:stream module and exposes pipeTo and pipeThrough methods.

🚰 pipeTo(writableStream: NodeJS.WritableStream, options?: PipelineOptions)

const BASE_URL = "https://jsonplaceholder.typicode.com";
const client = createClient(BASE_URL);

const stream = await client.stream("/posts/1");
const data = [];
const writeStream = new Writable({
  write(chunk, _, done) {
    data.push(chunk);
    done();
  },
});

await stream.pipeTo(writeStream);
const post = JSON.parse(Buffer.concat(data).toString());
assert(post.id, 1); // => true;

🔀 pipeThrough(transformStream: Transform, options?: PipelineOptions)

const BASE_URL = "https://jsonplaceholder.typicode.com";
const client = createClient(BASE_URL);

const stream = await client.stream("/posts/1");
const transform = new Transform({
  transform(chunk, _, cb) {
    this.push(chunk);
    cb();
  },
});
const data = [];
transform.on("data", (chunk) => {
  data.push(chunk);
});
await stream.pipeThrough(transform);
const post = JSON.parse(Buffer.concat(data).toString());
assert(post.id, 1); // => true;