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 🙏

© 2024 – Pkg Stats / Ryan Hefner

ism

v0.6.0

Published

Turn-based multiplayer nation building strategy game

Downloads

23

Readme

Build Status

ism

Build a civilisation in an ascii world.

Ism is a multiplayer turn-based strategy game currently in early development. Some features include:

  • Procedurally generated world
  • Network multiplayer
  • Console client interface
  • Full mouse and keyboard controls
  • Lots of crazy ideas in development :)

Title Screen Main Screen

Install

npm install -g ism

or if you would like to follow the currently rapid development:

git clone https://github.com/caseman/ism.git
cd ism
npm install
npm link

I try hard to make sure that everything works in the master branch, though I can't make any guarantees!

Running the game

Ism consists of a server and console client. To run the client once installed simply use:

ism

For local games, the client will automatically launch a local server for you. To run a server separately, you can use:

ism-server

By default this will listen on all interfaces on port 5557. This is configurable via command line options:

Usage: ism-server

Options:
  -h, --host      host name or address to listen on                           [default: "0.0.0.0"]
  -p, --port      port number to listen on                                    [default: 5557]
  -v, --verbose   More verbose logging of client connections
  --debug         Debug logging of all client/server activity
  --version       Output the software version and exit
  -d, --database  path to game database directory (will be created on start)  [default: "/home/caseman/.ism/db"]

Note that only one server can be running at a time for each game database. If you are running a server locally with the default database, the client will automatically use it for local games.

Saving games

All games are automatically saved to the server's database. As the game progresses the database is automatically updated, thus there is no "save game" command. Any game that you have started on a server can be resumed where it left off. This means that the client and server can be restarted at will without losing anything.

Currently a game can only be resumed from the client that initially joined it. In time the ability to resume your games from anywhere will be implemented.

Gameplay

There is currently very little gameplay implemented, as the focus has been on getting the map generation, client/server infrastructure and client user interface built. Basically all you can do is select your people, move them around to explore the map, and scroll the map view.

The mouse is supported, though all functions are available via the keyboard.

Keyboard Controls

ESC: Return to title screen

,: Select previous person

.: Select next person

h: Move left

l: Move right

j: Move down

k: Move up

y u b n: Move diagonally

Hold down CTRL or SHIFT with the movement keys to scroll. You can also scroll using the arrow keys.