
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@danprince/zhttp
Advanced tools
A small library that brings zod
, express
, and static-path
together to create type safe HTTP endpoints for clients and servers.
Install zhttp
and its peer dependencies.
npm i @danprince/zhttp express @types/express zod static-path
static-path
requires typescript@^4.1
(for template literal types)zod
requires you to run TypeScript in strict mode.Define your endpoints somewhere that both your client and server can import from.
// shared/endpoints.ts
import { endpoint } from "@danprince/zhttp";
import { z } from "zod";
import { path } from "path";
export let sendMessage = endpoint({
// static-path definition
path: path("/message/:to"),
// "post" | "get" | "patch" | "put" | "delete" | "head"
method: "post",
// zod request body schema
request: z.object({
subject: z.string(),
text: z.string(),
}),
// zod response body schema
response: z.object({
status: z.union([
z.literal("success"),
z.literal("pending"),
z.literal("failure"),
]),
}),
});
Then create corresponding server side route handlers.
// server/routes.ts
import { createRouter } from "@danprince/zhttp/express";
import { sendMessage } from "../shared/endpoints";
let router = createRouter();
router.use(sendMessage, async (req, res) => {
// Type safe access from req.body
let { subject, text } = req.body;
// ...
// Type safe res.body methods
res.json({ status: "success" });
});
// router.routes() is an Express.Router
And finally, the client side.
// client/index.ts
import { fetchJson } from "@danprince/zhttp/fetch";
import { sendMessage } from "../shared/endpoints";
let res = await fetchJson(sendMessage, {
params: { to: "howard" },
body: {
subject: "Hello!",
text: "This is a message",
},
});
// Type safe response
res.status
FAQs
Typesafe HTTP endpoints with express, zod, and static-path
The npm package @danprince/zhttp receives a total of 0 weekly downloads. As such, @danprince/zhttp popularity was classified as not popular.
We found that @danprince/zhttp 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.