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

verion-lang

v3.0.0

Published

Verion Language - A simple, English-like programming language for everyone

Readme

🚀 Verion Language (VL)

A simple, English-like programming language designed for beginners and makers.

Verion Language is an installable programming language with English-like syntax, making code readable and beginner-friendly. Perfect for bots, web servers, and simple applications.

✨ Features

  • English-like Syntax - Write code that reads like natural language (set name to "Alice")
  • Easy to Learn - Simple, intuitive syntax perfect for beginners
  • Interpreted or Compiled - Run instantly with vl run or transpile to JavaScript
  • String Concatenation - Natural string joining with +
  • Professional CLI - Full-featured command-line interface
  • npm Installable - Install globally like Node.js or Python
  • Complete Pipeline - Tokenizer → Parser → Interpreter/Transpiler

Install (from local clone)

git clone https://github.com/VerionTech/verion-lang.git
cd verion-lang
npm install
npm link   # or: npm install -g .

Now you have the vl command:

vl --help

🎯 Quick Start

Create a file called hello.vl:

write "Hello, World!"

Run it:

vl run hello.vl

Output:

Hello, World!

📚 Language Syntax

Printing Output

write "Hello, World!"
write 42

Variables

set name to "Alice"
set age to 25
set total to 100

Math Operations

set x to 10
set y to 5

set sum to x plus y
set difference to x minus y
set product to x multiply y
set quotient to x divide y

Functions

define greet(name):
    write "Hello "
    write name
end

greet("Bob")

Conditionals

set score to 85

if score is greater than 80:
    write "Great job!"
else:
    write "Keep trying"
end

Loops

repeat 5 times:
    write "Hello!"
end

Comments

# This is a comment
write "This is code"

🛠️ CLI Commands

Run a VL Script

vl run <file.vl>

Build to JavaScript

vl build <file.vl>

This creates a .mjs file in the dist/ directory.

Initialize a Project

vl init

Add npm Packages

vl pkg add <package-name>

Help

vl help

🏗️ Architecture

Verion Language consists of four main components:

  1. Tokenizer (compiler/tokenizer.js) - Converts source code into tokens
  2. Parser (compiler/parser.js) - Converts tokens into an Abstract Syntax Tree
  3. Interpreter (compiler/interpreter.js) - Executes the AST directly
  4. Transpiler (compiler/transpiler.js) - Converts AST to JavaScript

📖 Examples

The examples/ directory contains sample programs demonstrating all features:

  • hello.vl - Hello World
  • variables.vl - Variable declarations and math
  • functions.vl - Function definitions and calls
  • conditionals.vl - If/else statements
  • loops.vl - Repeat loops
  • complete.vl - All features combined