Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timkurvers/grumbles
A web text-adventure game featuring Grumbles the Wizard
https://github.com/timkurvers/grumbles
Last synced: about 1 month ago
JSON representation
A web text-adventure game featuring Grumbles the Wizard
- Host: GitHub
- URL: https://github.com/timkurvers/grumbles
- Owner: timkurvers
- License: mit
- Created: 2021-03-07T20:40:53.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T01:41:09.000Z (over 1 year ago)
- Last Synced: 2024-04-15T00:13:27.413Z (7 months ago)
- Language: JavaScript
- Homepage: https://timkurvers.github.io/grumbles
- Size: 189 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Grumbles the Wizard
[![MIT License](https://badgen.net/github/license/timkurvers/grumbles)](LICENSE.md)
A web text-adventure game featuring Grumbles the Wizard on a quest to rescue
a missing princess using HTTP verbs to interact with the game world.This is a JavaScript client-side port of the [Ruby original], a submission created
over the span of a weekend by [@toothfairy], [@sindrenm] and [@timkurvers] for
Rails Rumble 2014.Play the game: https://timkurvers.github.io/grumbles
Stuck? Follow the [walkthrough]!
## Setup
Install [Node.js] for your platform and install dependencies through npm:
```bash
npm install
```## Running
To spin up a development server on `localhost:8000`, run:
```bash
npm start
```To specify a different port, use the `PORT` environment variable:
```bash
PORT=3000 npm start
```[@sindrenm]: https://github.com/sindrenm
[@timkurvers]: https://github.com/timkurvers
[@toothfairy]: https://github.com/toothfairy
[Node.js]: https://nodejs.org/en/
[Ruby original]: https://github.com/hyperoslo/grumbles/
[walkthrough]: WALKTHROUGH.md