This project is a super simple framework for developing terminal based Rogue-like games using Node.js.
Right now, this package isn't on NPM. But you can clone this repository and run npm link
to get a symlink to this package.
npm build
npm link
- Go to your game's directory
npm link rogue
If you just want to see it in action, look in the examples directory:
- Look in
examples/simple/app.js
for details on getting started - Run
npm build
andnpm run run
inexamples/simple
to see it in action!
-
Add the ability to have complex connections between rooms (right angles). Right now, they can only be straight lines -
Add a viewport, so the map can be very large, but only the values in view are rendered to the screen - Add the ability to link dungeons together. This would act like floors for deep dungeon traversal.