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

@mizu-dev/hono-test

v0.2.0-alpha.1

Published

Hono middleware to forward data to a local instance of @mizu-dev/studio

Downloads

4

Readme

Mizu Client

This is a client library that will send telemetry data to a local Mizu server upon every incoming request and outgoing response.

Note that it also monkey-patches console.* functions to send logs to the Mizu server, so any time you use a console.log, console.error, etc., in your app, it will send that data to Mizu.

Quick Start

Create hono project

# Create a hono project, using cloudflare-workers runtime
npm create hono@latest my-hono-project
# > cloudflare-workers

Install middleware

npm i @mizu-dev/hono

Add middleware

import { Hono } from "hono";
import { createHonoMiddleware } from "@mizu-dev/hono";

const app = new Hono();

app.use(createHonoMiddleware())

app.get("/", (c) => {
  return c.text("Hello Hono!");
});

export default app;

Launch UI

npx @mizu-dev/studio

Visit http://localhost:8788 to see your logs come in as you test your app!

Usage

This section takes you through:

  • Creating a Hono Project
  • Installing the mizu client library
  • Configuring your project to use mizu
  • Launching the mizu UI

Create a Hono project

Create a new Hono project with the following command. When prompted, choose cloudflare-workers as the template.

npm create hono@latest my-hono-project
# > cloudflare-workers

Install the mizu client

npm i @mizu-dev/hono

Add middleware

Add the mizu import, and then add middleware definitions AT THE TOP OF YOUR APP, ideally in your src/index.ts

If you only just started your project, you can copy paste the entire contents below into your src/index.ts:

import { type Context, Hono } from "hono";
import { createHonoMiddleware } from "@mizu-dev/hono";

const app = new Hono();

const createConfig = (c: Context) => {
 return {
  endpoint: c.env?.MIZU_ENDPOINT,
  service: c.env?.SERVICE_NAME || "unknown",
  libraryDebugMode: c.env?.LIBRARY_DEBUG_MODE,
  monitor: {
   fetch: true, // set to false if you do not want to monkey-path fetch and send data about external network requests to mizu
   logging: true, // not yet implemented!
   requests: true, // set to false if you do not want to log data about each request and response to mizu
  },
 };
}

app.use(createHonoMiddleware({ createConfig }))
app.get("/", (c) => {
  return c.text("Hello Hono!");
});

export default app;

Add MIZU_ENDPOINT environment variable

Add MIZU_ENDPOINT=http://localhost:8788/v0/logs to your .dev.vars file. E.g.,

echo -e '\nMIZU_ENDPOINT=http://localhost:8788/v0/logs\n' >> .dev.vars

You should be good to go! Just execute npm run dev to kick off your new Hono project..

Make requests to your Hono app, and the logs should show up in the mizu UI!

Launch the mizu UI

npx @mizu-dev/studio

That's it! You should see your logs in the mizu UI.

Local Development

See DEVELOPMENT.md for instructions on how to develop this library.