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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@pulsate-dev/exp-api-types

v0.1.2

Published

TypeScript types and Fetch API client for Pulsate (Experimental)

Readme

pulsate-api-types

TypeScript types and a Fetch API client generated from the Pulsate OpenAPI schema.

The source package is published as @pulsate/exp-api-types on JSR and as @pulsate-dev/exp-api-types on npm.

Install

deno add jsr:@pulsate/exp-api-types
npm install @pulsate-dev/exp-api-types

Use Fetch Client

import { client, getV0TimelinePublic } from "@pulsate-dev/exp-api-types";

client.setConfig({
  baseUrl: "https://demo.pulsate.dev",
});

const { data, error } = await getV0TimelinePublic();

if (error) {
  throw error;
}

console.log(data[0]?.content);

Use Types

import type { GetPublicTimelineResponse } from "@pulsate-dev/exp-api-types";

type TimelineProps = {
  timeline: GetPublicTimelineResponse;
};

export function Timeline({ timeline }: TimelineProps) {
  return timeline.map((note) => note.content);
}

Generate Types

Requirements: Deno 2.

deno task build

deno task build fetches the OpenAPI schema from the fixed @pulsate-dev/api-schema version in deno.json, generates src/, and does not require a locally copied schema file. OpenAPI descriptions are emitted as JSDoc comments in generated types and operation functions.

To update the schema, explicitly change the @pulsate-dev/api-schema version in deno.json and package.json, then regenerate the types and lockfile.

Build npm Package

The npm package is generated with dnt.

deno task build-npm

Release

Push a v<version> tag matching deno.json's version. GitHub Actions verifies generated types, publishes @pulsate/exp-api-types to JSR, then publishes @pulsate-dev/exp-api-types to npm.

Licenses

Copyright (C) 2025 Pulsate Project

Licensed under Apache 2.0 license