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

kelvin-lang

v0.1.1

Published

A declarative language for building web applications

Readme

Kelvin

A declarative language for building web applications. An on-going experiment in building a new programming language with Claude Code.

Define your data models, APIs, admin interfaces, and access control in a single file. No boilerplate, no code generation, no framework to learn.

app Blog {
  entity Post {
    title: text(1..200)
    body: text(1..50000)
    published: bool = false
  }

  view public {
    visibility: public

    list Post {
      show: title, created
      where: published
      order by: created desc
    }
  }

  view admin {
    list Post {
      show: title, published, created
      actions: edit, delete
    }
  }
}
$ kelvin serve blog.kelvin
Server running at http://localhost:3000

That's it. You have a database, REST API, and admin panel.

Features

  • Declarative syntax - Describe what you want, not how to build it
  • Instant API - REST endpoints generated automatically from your schema
  • Built-in admin - A working admin interface out of the box
  • Authentication - JWT-based auth with user registration and login
  • Hot reload - Edit your .kelvin file and see changes instantly
  • Type validation - Rich type system with constraints (text(1..100), email, int(0..*))
  • SQLite storage - Zero-config database that just works

Quick Start

Install

npm install -g kelvin-lang

Create your first app

Create a file called app.kelvin:

app HelloWorld {
  entity Message {
    content: text(1..500)
  }

  view messages {
    visibility: public

    list Message {
      show: content, created
      order by: created desc
    }

    create Message {
      input: content
    }
  }
}

Run it

kelvin serve app.kelvin

Your API is now running:

# Create a message
curl -X POST http://localhost:3000/api/messages/message \
  -H "Content-Type: application/json" \
  -d '{"content": "Hello, World!"}'

# List all messages
curl http://localhost:3000/api/messages/message

Documentation

Project Status

Kelvin is in active development. The core features work:

  • Entity definitions with validation
  • Public and authenticated views
  • List, create, edit, delete operations
  • User authentication (JWT)
  • Admin interface
  • Hot reload

See kelvin-spec.md for the full roadmap.

VS Code Extension

Syntax highlighting for .kelvin files is available in the vscode-kelvin directory.

To install:

  1. Open VS Code
  2. Run code --install-extension vscode-kelvin/kelvin-lang-0.0.1.vsix

Or copy the vscode-kelvin folder to your VS Code extensions directory.

Contributing

Contributions are welcome! Please read the language spec before contributing to understand the design philosophy.

License

MIT