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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@malloy-publisher/server

v0.0.144

Published

Malloy Publisher Server

Readme

Malloy Publisher Server

The Malloy Publisher Server is an Express.js server that provides an API for managing and accessing Malloy data models, packages, and queries

K6 Test Presets

The Malloy Publisher Server includes several K6 test presets to help you test its performance and stability.

Below is a list of the available test presets:

Smoke Test

Basic functionality test with minimal load.

  • File: ./k6-tests/smoke-test.ts
  • Virtual Users: 1
  • Duration: 1 minute
  • 95th Percentile Response Time: < 500ms
  • Error Rate: < 1%

Load Test

Testing system under normal load.

  • File: ./k6-tests/load-test.ts
  • Virtual Users: 50
  • Duration: 5 minutes
  • 95th Percentile Response Time: < 1s
  • Error Rate: < 5%

Stress Test

Testing system under extreme load.

  • File:

    ./k6-tests/stress-test.ts

  • Virtual Users: 100

  • Duration: 10 minutes

  • 95th Percentile Response Time: < 2s

  • Error Rate: < 10%

Spike Test

Testing system under sudden spikes of load.

  • File: ./k6-tests/spike-test.ts
  • Stages:
    • 2 minutes ramp-up to 100 users
    • 1 minute at 100 users
    • 2 minutes ramp-down to 0 users
  • 95th Percentile Response Time: < 2s
  • Error Rate: < 10%

Breakpoint Test

Testing system to find its breaking point.

  • File: ./k6-tests/breakpoint-test.ts
  • Stages:
    • 2 minutes at 50 users
    • 2 minutes at 100 users
    • 2 minutes at 150 users
    • 2 minutes at 200 users
    • 2 minutes ramp-down to 0 users
  • 95th Percentile Response Time: < 3s
  • Error Rate: < 15%

Soak Test

Testing system under sustained load.

  • File: ./k6-tests/soak-test.ts
  • Virtual Users: 10
  • Duration: 1 hour
  • 95th Percentile Response Time: < 1s
  • Error Rate: < 1%

You can run these presets using the K6 testing tool to ensure your system performs well under different load conditions.

For example, this command will run a smoke test against your localhost:

k6 run ./k6-tests/smoke-test.ts --env PUBLISHER_URL=http://::1:4000

OpenTelemetry Integration

The K6 tests can be configured to export metrics to OpenTelemetry collectors using the experimental OpenTelemetry output. This allows you to integrate K6 metrics with your observability stack.

# Build the publisher server
bun run build
# Replace this with an actual OTLP endpoint that you can use
MY_OTLP_ENDPOINT=http://monitoring.myserver.com:4318
# Start an instrumented publisher server
OTEL_EXPORTER_OTLP_ENDPOINT=${MY_OTLP_ENDPOINT} PACKAGE_ROOT=./malloy-samples bun start:instrumented
# Start an instrumented k6 smoke test
K6_OTEL_HTTP_EXPORTER_ENDPOINT=${MY_OTLP_ENDPOINT} K6_OTEL_GRPC_EXPORTER_INSECURE=true K6_OTEL_METRIC_PREFIX=k6_ k6 run ./k6-tests/smoke-test.ts --env PUBLISHER_URL=http://::1:4000

For more information on how to configure OpenTelemetry collectors, please refer to the official documentation: K6 OpenTelemetry Integration

MCP Prompt Capability

Publisher's MCP interface exposes LLM-ready prompts for explaining, generating, translating and summarising Malloy code.

| Prompt ID | Purpose | | ---------------------------------------------- | ----------------------------------------------------------------- | | [email protected] | Explain a Malloy query (sources, transformations, output). | | [email protected] | Create Malloy based on a natural-language goal and model context. | | [email protected] | Convert SQL into Malloy using a model for schema reference. | | [email protected] | Summarise a Malloy model (purpose, entities, joins). |

List prompts:

mcp-client prompts/list

Get a prompt:

mcp-client prompts/get \
  --name [email protected] \
  --arguments '{"query_code":"from flights"}'

These calls return messages ready for your LLM chat completion.