Malwoden is a roguelike library, meant to perform much of the heavy lifting when creating roguelike games. It takes inspiration from rot-js, as well as bracket-lib. ROT still has a number of features we're still building towards, so feel free to take the best parts from each library.
One of the main goals of this library is to provide a simple, minimalistic Terminal
package with great support for CP437 tilesets.
This is one area I've found lacking, and hope this library can provide a solid framework for roguelikes and text based games.
The core of the terminal package is based heavily on Bob Nystrom's amazing malison Dart library.
If you're looking for graphics outside basic ASCII/CP437, phaser and pixi are both worth checking out.
Malwoden can be downloaded via npm:
# For stable
npm install malwoden
# For dev builds
npm install malwoden@next
If developing malwoden locally, you can use npm link
to easily use it in another project.
# Inside the malwoden project
npm run start
npm link
# Inside another project
npm link malwoden
Have a project you'd like added to the list? Feel free to open an issue on the repo with a link!