SkillAgentSearch skills...

Milliparsec

🌌 Tiniest body parser in the universe. Built for modern Node.js

Install / Use

/learn @tinyhttp/Milliparsec

README

<div align="center"> <br /><br /><br /> <img src="logo.png" width="400px" /> <br /><br />

Version Coverage Github actions Downloads

</div> <br />

Tiniest body parser in the universe. Built for modern Node.js.

Check out deno-libs/parsec for Deno port.

Features

  • 🛠 JSON / raw / urlencoded / multipart support
  • 📦 tiny package size (8KB dist size)
  • 🔥 no dependencies
  • tinyhttp and Express support
  • ⚡ ~15% faster than body-parser, ~4x faster than formidable

Install

# pnpm
pnpm i milliparsec

# bun
bun i milliparsec

Usage

Basic example

Use a middleware inside a server:

import { createServer } from 'node:http'
import { json } from 'milliparsec'

const server = createServer(async (req: ReqWithBody, res) => {
  await json()(req, res, (err) => void err && res.end(err))

  res.setHeader('Content-Type', 'application/json')

  res.end(JSON.stringify(req.body))
})

What is "parsec"?

The parsec is a unit of length used to measure large distances to astronomical objects outside the Solar System.

View on GitHub
GitHub Stars205
CategoryDevelopment
Updated19d ago
Forks8

Languages

TypeScript

Security Score

100/100

Audited on Mar 9, 2026

No findings