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

@tinyhttp/send

v2.2.1

Published

json, send, sendFile, status and sendStatus methods for tinyhttp

Downloads

329,108

Readme

@tinyhttp/send

npm (scoped) npm

Extensions for sending a response, including send, sendStatus, status, sendFile and json. Works with any backend framework.

Install

pnpm i @tinyhttp/send

API

import { json, send, sendStatus, status } from '@tinyhttp/send'

send(body)

Sends the HTTP response.

The body parameter can be a Buffer object, a string, an object, or an array.

Example
res.send(Buffer.from('whoop'))
res.send({ some: 'json' })
res.send('<p>some html</p>')
res.status(404).send('Sorry, we cannot find that!')
res.status(500).send({ error: 'something blew up' })

json(body)

Sends a JSON response. This method sends a response (with the correct content-type) that is the parameter converted to a JSON string using JSON.stringify().

The parameter can be any JSON type, including object, array, string, boolean, number, or null, and you can also use it to convert other values to JSON.

Example
res.json(null)
res.json({ user: 'tobi' })
res.status(500).json({ error: 'message' })

status(number)

Sets the HTTP status for the response. It is a chainable alias of Node’s response.statusCode.

Example
res.status(403).end()
res.status(400).send('Bad Request')

sendStatus

Sets the response HTTP status code to statusCode and send its string representation as the response body.

Example
res.sendStatus(200) // equivalent to res.status(200).send('OK')
res.sendStatus(403) // equivalent to res.status(403).send('Forbidden')
res.sendStatus(404) // equivalent to res.status(404).send('Not Found')
res.sendStatus(500) // equivalent to res.status(500).send('Internal Server Error')

If an unsupported status code is specified, the HTTP status is still set to statusCode and the string version of the code is sent as the response body.

sendFile

Sends a file by piping a stream to response. It also checks for extension to set a proper Content-Type header.

Path argument must be absolute. To use a relative path, specify the root option first.

Example
res.sendFile('song.mp3', { root: process.cwd() }, (err) => console.log(err))

Example

import { createServer } from 'node:http'
import { send } from '@tinyhttp/send'

createServer((req, res) => send(req, res)('Hello World')).listen(3000)