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

code-station

v1.0.4

Published

<!-- ![CodeStation Logo](/packages/local-client/public/logo192.png "logo") --> <p align="center"> <img src="/packages/local-client/public/logo192.png" width=50% height=50% > <img src="/packages/local-client/public/ui-screenshot.png" > </p>

Downloads

11

Readme

📝 Code-Station

Brief

A lightweight, efficient, and interactive coding environment. You can write JavaScript, see it, execute it, write comprehensive documentation using markdown, and share it with others.

Features

  • Click any text cell (including this one) to edit it
  • The code in each code editor is all joined together into one file. If you define a variable in cell #1, you can refer to it in any following cells
  • You can show any React components, string, number, or anything else by calling the show function. This is a function built into the environment. Call show multiple times to show multiple values
  • Re-order or delete cells using the buttons on the top right
  • Add new cells by hovering on the divider between each cell

Installation

All of your changes get saved to the file you opened Code-Station with. You can run npx code-station serve test.js, all of the text and code you write will be saved to the test.js file automatically.

npx code-station serve <file name> -p <port number> ex. npx code-station serve notebook.js -p 4000 <> optional

Development

  • Do not use npm to install new packages, use lerna add to install the package to a specific directory lerna add <package>[@version] [--dev] [--exact] [--peer] --scope=[directory] ex. lerna add [email protected] --exact --scope=@code-station/local-client

  • Using ESBuild to bundle entire CLI. cd to the cli directory and run npm run prepublishOnly

  • Start up proxy server. cd to the cli directory and run node index.js serve

  • Publishing to NPM Sign in to npm npm login Run below code in root directory to publish to npm cli folder depends on local-client, you need to create an organization on npm to publish three packages" lerna publish --no-push

  • For any additional inquires, feel free to contact me on LinkedIn

Iteration Opportunities

  1. More user-friendly output
  2. Frontend improvement (fixed code editor height)
  3. React syntax color highlighter

Thank you for using Code-Station! Ernest Leung