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

openrpg

v0.5.0

Published

OpenRPG aims to be the standard for all d20 and tabletop game tools.

Downloads

39

Readme

OpenRPG

Build Status Version Number Discord Chat

OpenRPG is still in its infancy and I want it to do a lot by v1.0.0!
What OpenRPG aims to accomplish two fold.

First, it will be a tool for someone to use to quickly create content for a tabletop RPG world. v1.0.0 will focus specifically on the 5e rules, however I hope to have that expand out to include Pathfinder and as far back as AD&D.

Secondly, OpenRPG should be structured in such a way that game developers that want to emulate the d20 system in a video game could easily implement our libraries in their games to help speed production of back end tools.

Some of the features this tool will include by v1.0.0 are:

  • A GUI front-end for the CLI tools
  • A die simulation tool
  • A name generator tool
  • A character generator tool (with the option to autofill a character sheet)
  • A town generator tool
  • An encounter/combat generator tool
  • A world generator tool
  • A world/town map generator

... And more (hopefully)!

v0.1.0 is a basis for the CLI/developer version, but v1.0.0 will contain a portable GUI that works on Windows, Linux, and macOS.

Building

Currently we require cmake (at least v2.8.4) and make, and your choice of C/C++ compiler for the library binaries. To compile the gui see Building the GUI below.

Note: This project strives to keep its source as clean of any dependancies to be as cross platform as possible. If you have suggestions to help move toward that goal, please feel free to open issues, or even a PR!

Linux Build Script

The build script now provides some extra assistance with building, installing, uninstalling and more.

Debug build: $ ./build.sh

Install debug build: $ ./build.sh install

Release build: $ ./build.sh release

Install release build: $ ./build.sh release install

Clean build files: $ ./build.sh clean

Clean build files and rebuild: $ ./build.sh rebuild

Note: build.sh has the potential to work on MacOS, but is currently untested. If you happen to use a Mac, please test this!

Windows Build Script

This script is VERY minimal compared to its bash counterpart. It could use a ton of improvements, so if that is something you are interested in, open a PR! Please make sure you have Visual Studio Build Tools (i.e msbuild) in your %PATH%.

Debug build: > .\build.bat

Release build: > .\build.bat release

Clean build files: > .\build.bat clean

Clean build files and rebuild: > .\build.bat rebuild

Manual Build

Create a build directory $ mkdir build && cd build
Run cmake $ cmake .. OR Optionally run $ cmake -DCMAKE_INSTALL_PREFIX=/desired/install/location ..
Run make $ make

Check Integrity of Build

In the toplevel build/ folder, run make check $ make check

Building the GUI

Currently we require npm in addition to the requirements noted above to build the GUI. To compile the main binaries see Building above.

Manual build

Because we need to link to our C++ libraries building and linking properly gets pretty complicated pretty quick. To make this easier just use the provided build.sh files. I will not go into manual build details here. If you would like to understand this better, I suggest opening up those scripts and taking a look.

Linux Build Script

The build script now provides some extra assistance with building and running the GUIs.

Debug build: $ ./build.sh app

Release build: $ ./build.sh release app

Linux clean build: $ ./build.sh clean app

Note: this currently only cleans the top level build/ folder, and not the app.

Linux run the app: $ ./build.sh run app

Note: build.sh has the potential to work on MacOS, but is currently untested. If you happen to use a Mac, please test this!

Windows Build Script

Currently the Windows built.bat does not support building the app.

Installing

Arch Linux Install

We are now on the Arch User Repository! You can use your favorite AUR wrapper, or simply makepkg.

AUR Wrapper Example: $ yay -S openrpg-git

Makepkg Example: $ git clone https://aur.archlinux.org/openrpg-git.git && cd openrpg-git && makepkg -si

Installing from Source

After building, in the build/ folder, run make install $ make install

Uninstalling

After installing, in the build/ folder, run make uninstall $ make uninstall

NOTE: Currently this will NOT install the GUI.

License

OpenRPG Software License - Version 1.0 - February 10th, 2017 https://openrpg.io/about/license/