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

ris-vsc

v1.0.0

Published

Reverse Instruction System C++ Environment Setup and Development Tools

Downloads

3

Readme

RIS-CPP

A comprehensive development environment for the Reverse Instruction System (RIS) in C++.

Features

  • 🚀 Complete project scaffolding
  • 🔍 VS Code integration with syntax highlighting
  • 📝 Language server with autocompletion
  • 🐛 Integrated debugging support
  • 📊 Test framework integration
  • 👀 File watching and live reload
  • 🛠️ CMake-based build system

Installation

npm install -g ris-cpp

Quick Start

  1. Create a new project:
ris-cpp --init
  1. Start coding in the src directory
  2. Compile your project:
ris-cpp --compile src/main.cpp
  1. Run with file watching:
ris-cpp --watch

Project Structure

./
├── src/                 # Source files
│   ├── main.cpp        # Main interpreter
│   └── example.ris     # Example RIS file
├── .vscode/            # VS Code configuration
│   ├── settings.json   # Editor settings
│   └── launch.json     # Debug configuration
├── server/             # Language server
│   └── server.js       # Server implementation
├── tests/              # Test directory
│   └── interpreter.test.js
└── CMakeLists.txt      # Build configuration

RIS Language Support

The package provides full language support for RIS files including:

  • Syntax highlighting
  • Code completion
  • Error detection
  • Symbol navigation

Supported Commands

  • VAR: Variable declaration
  • PRN: Print statement
  • HLT: Halt execution
  • INT: Hardware interrupt
  • OUT: Port output
  • IN: Port input
  • PROC: Process creation

VS Code Integration

Features

  • Custom syntax highlighting for .ris files
  • Debugging configuration
  • IntelliSense support
  • Format on save
  • Custom snippets

Debugging

  1. Set breakpoints in your code
  2. Press F5 to start debugging
  3. Use the debug toolbar to step through code

Build System

The project uses CMake for building. To build your project:

# In the project root
mkdir build && cd build
cmake ..
make

Testing

Run the test suite:

npm test

Contributing

  1. Fork the repository
  2. Create your feature branch
  3. Commit your changes
  4. Push to the branch
  5. Create a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.