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

pumpkin-lang

v0.1.8

Published

A friendly, interpreted language designed for education.

Readme

🎃 Pumpkin: Code for Humans

The programming language that grows your ideas. v0.1.8 - The Foundation Release

License: MIT Version Status

Pumpkin is a programming language built for humans, not robots. It removes the scary symbols and confusing jargon, replacing them with clear instructions that make sense the first time you read them.

Try the Playground (Runs entirely in your browser!)


🎨 What can I build?

Pumpkin is designed for Creative Coding, Learning, and Exploration.

  • Algorithmic Art: Generate patterns which you can see in our "Use Cases" page.
  • Text Adventures: Create interactive stories with simple logic.
  • Math Experiments: Visualize algorithms and solve problems playfully.
  • Learning Basics: Master loops, variables, and conditions without the headache.

🚀 Installation

CLI (Mac, Linux, Windows)

You can install the Pumpkin CLI via npm. It works on any machine with Node.js installed.

npm install pumpkin-lang

Verify the installation:

npx pumpkin --version
# Output: 🎃 Pumpkin v0.1.8

Editor Support (VS Code)

To get file icons and syntax highlighting, install our official extension:

  1. Search for "Pumpkin Language Support" in the VS Code Extensions view.
  2. Or visit the VS Code Marketplace (Click here to install).
  3. Click Install.

⚡ Quick Start

1. Interactive REPL

Just type npx pumpkin repl to start playing immediately.

$ npx pumpkin repl
Welcome to Pumpkin v0.1.8 🎃
> show "Hello World"
"Hello World"
> let x = 10
> show x * 2
20

2. Running a File

Create a file named hello.pumpkin:

// hello.pumpkin
let name = "Developer"
show "Hello, " + name + "!"

let count = 0
repeat 3 {
    count = count + 1
    show count
}

Run it:

npx pumpkin run hello.pumpkin

🌟 Features (v0.1)

Pumpkin allows you to write basic algorithmic logic with a smile.

  • Variables: let x = 10, let name = "Pumpkin"
  • Math: +, -, *, /, ( ) (Human-readable math)
  • Logic: if, else, and, or, not
  • Loops: while, repeat
  • Output: show "text"
  • Standard Lib: Basic math and logic modules.
  • Comments: // This is a comment

What's Missing? (Known Limitations)

To keep v0.1 stable, we intentionally excluded:

  • ❌ User-defined Functions
  • ❌ Arrays / Lists
  • ❌ File I/O
  • ❌ Imports (Partially supported in standard lib)

These are actively being worked on! See our Roadmap.


🛠️ For Contributors

We love contributors! This project is a great place to learn about language design, Rust, and WASM.

Architecture

  • Core: Written in Rust (/pumpkin_core). compiled to WASM.
  • CLI: Written in TypeScript (/src/cli). Wraps the WASM core.
  • Website: Next.js + React (/website). Hosted on Vercel.

Development Setup

  1. Prerequisites: Node.js (v18+), Rust (latest stable), wasm-pack.

  2. Build Core:

    cd pumpkin_core
    wasm-pack build --target nodejs --out-dir ../dist/pkg
  3. Run Tests:

    ./tests/run_smoke_test.sh

📜 License

Pumpkin is released under the MIT License and the GNU GPL v3. You may choose either license to govern your use of the software.

Trademark Notice: The name "Pumpkin", and the "Pumpkin." logo are trademarks of Citrullix Inc. Use of these marks in derivative works requires explicit permission to avoid community confusion.


Made with 🎃 for the next generation of coders.