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

niks30-language

v10.0.1

Published

Niks30 - Production language runtime and ecosystem

Readme

Niks30

Niks30 is a JavaScript-family programming language and runtime ecosystem, implemented in Node.js with an interpreter, bytecode compiler/VM, CLI, tooling, and standard-library foundations.

Current release: v10.0.0

Highlights

  • Lexer, parser, AST and interpreter
  • Variables, expressions, arrays and objects
  • Functions, closures and recursion
  • Classes, inheritance, this, super, instanceof
  • try / catch / finally / throw
  • Modules
  • Generators and iterators
  • async / await and Promise runtime
  • Bytecode compiler and BytecodeVM
  • Bytecode optimizer
  • Standard-library modules
  • Package-management foundations
  • REPL
  • Formatter and linter
  • Debugger foundations
  • VS Code/LSP foundations
  • Production-hardening utilities
  • Regression and compatibility tests

Installation

From the repository:

npm install
npm install -g .

Verify:

n30 version
n30 help

Expected:

Niks30 v10.0.0

CLI

n30 run <file.n30>
n30 check <file.n30>
n30 repl
n30 init
n30 install <package>
n30 uninstall <package>
n30 list
n30 format [path]
n30 lint [path]
n30 debug <file.n30>
n30 update
n30 build <file.n30>
n30 vm <file.n30bc.json>
n30 help
n30 version

Hello World

print("Hello from Niks30!");

Run:

n30 run examples/hello.n30

Bytecode VM

Build a supported bytecode example:

n30 build examples/v6_bytecode.n30

Execute the generated bytecode:

n30 vm examples/v6_bytecode.n30bc.json

Expected output:

14

The compatibility alias is also available:

n30 run-bytecode examples/v6_bytecode.n30bc.json

Generators

n30 run examples/v9_generators.n30

Async/Await

n30 run examples/v9_async.n30

Testing

Install dependencies:

npm install

Run the complete regression suite:

npm test

The v10.0.0 release preparation suite reports:

Passed: 223
Failed: 0
Total: 223

Project layout

Niks30/
├── src/                    # language implementation and runtime
├── tests/                  # regression and feature tests
├── examples/               # example Niks30 programs
├── benchmarks/             # benchmark programs
├── vscode-niks30/          # VS Code language support
├── vscode-extension/       # extension assets
├── docs/                   # public project documentation
├── package.json
├── package-lock.json
├── README.md
├── CHANGELOG.md
├── LANGUAGE_SPEC_v10.0.0.md
├── RELEASE_MANIFEST_v10.0.0.json
├── LICENSE
├── CONTRIBUTING.md
├── SECURITY.md
└── CODE_OF_CONDUCT.md

Language specification

See LANGUAGE_SPEC_v10.0.0.md for the v10.0.0 stable language/runtime specification.

Release status

Niks30 v10.0.0 is the current stable release in this repository.

The project uses regression tests and release manifests to track compatibility. Not every subsystem has the same maturity level; the language specification and individual subsystem tests are the authoritative references for behavior.

Security

Do not treat Niks30 as a sandbox for untrusted programs. Use OS/container isolation when executing untrusted source.

See SECURITY.md.

Contributing

See CONTRIBUTING.md.

License

MIT — see LICENSE.