The Screepers Steamless Client is a web proxy for the Screeps World game client. It allows you to run Screeps in your web browser and works with macOS, Linux and Windows setups.
- Node.js v20+ or Docker Compose v3+
- Screeps World purchased and installed via Steam
Steam and the game do not necessarily need to be installed on the same system on which you will deploy the proxy. However, the game should be legally purchased by you and installed on a system you own. Not only does this support the developers, but it allows you to keep your proxy up-to-date, as the client receives regular updates automatically via Steam. Copying the client binary from another system will require you to repeat that process each time the client is updated.
Run the latest version with npx without installing:
npx screepers-steamless-client
Install the latest version globally with npm and run the client:
npm install -g screepers-steamless-client
screepers-steamless-client
Use Docker Compose to run the client.
-
Clone this repository
-
Locate the Screeps
package.nw
file from the Steam installation of Screeps. If you are unsure of where to find it, you can right click the game from your Steam library and select the "Browse local files" option. -
Create a
.env
file in the repo root directory and setSCREEPS_NW_PATH
to the path ofpackage.nw
:-
If you have Screeps installed on your local machine via Steam, you can reference it directly. For example, on macOS:
SCREEPS_NW_PATH="~/Library/Application Support/Steam/steamapps/common/Screeps/package.nw"
-
If Steam and/or Screeps is not installed locally, you can copy
package.nw
from a remote system and place it in thevendor
subdirectory:SCREEPS_NW_PATH="./vendor/package.nw"
-
-
If you want to allow remote connections, add the following line to
.env
:SCREEPS_PROXY_HOST="0.0.0.0"
-
Run
docker compose up
Alternatively, you can run the container without cloning the repo by using the NPX run approach from a container. This makes it easier to integrate with existing Docker Compose configurations (ex: alongside a Screeps server launcher).
If your deployment includes a Screeps server, make sure to use the --internal_backend
argument in the command to reference the Screeps server container address.
Example:
services:
client:
image: "node:20"
volumes:
- ${SCREEPS_NW_PATH:?"SCREEPS_NW_PATH not set"}:/screeps.nw
# Defines a volume for the NPM cache to speed up startup
# when the container is recreated
- client-npm-cache:/root/.npm
command: >
npx screepers-steamless-client
--package /screeps.nw
--host 0.0.0.0
--internal_backend http://screeps:21025
ports:
- "${SCREEPS_PROXY_HOST:-127.0.0.1}:8080:8080/tcp"
depends_on:
- screeps
restart: unless-stopped
# Additional services defined here...
volumes:
client-npm-cache:
View the server list page at http://localhost:8080/. This address can be changed with the --host
and --port
arguments.
Different servers can be accessed from the server list page, or using the url format http://localhost:8080/(BACKEND_ADDRESS)/
-
For the official server: http://localhost:8080/(https://screeps.com)/
-
For a local server on port 21025: http://localhost:8080/(http://localhost:21025)/
The server list page adds subdomains to localhost urls to keep auth tokens in separate local storage for multi server support.
Steam OpenId support is required on your local server. Enable it with screepsmod-auth. For xxscreeps servers, it's enabled by default.
All of the command line arguments are optional.
-h
,--help
— Display the help message.-v
,--version
— Display the version number.--package
— Path to the Screeps package.nw file. Use this if the path isn't automatically detected.--host
— Changes the host address. (default: localhost)--port
— Changes the port. (default: 8080)--internal_backend
— Set the internal backend url when running the Screeps server in a local container. This will convert requests to a localhost backend to use the container name where the Screeps server is running.--server_list
— Path to a custom server list json config file.--beautify
— Formats .js files loaded in the client for debugging.--guest
— Enable guest mode for xxscreeps.--debug
— Display verbose errors for development.
If the Screeps package.nw is not automatically detected, you can provide the path to the Screeps package.nw file.
npx screepers-steamless-client --package ~/screeps/package.nw
When running a Screeps server in a Docker container, you can configure the server to redirect requests made to localhost to an internal backend url.
npx screepers-steamless-client --internal_backend http://screeps:21025
Customize your server list by copying the server_list.json file and making your changes.
Run the client with your custom server list:
npx screepers-steamless-client --server_list ./custom_server_list.json
npm start
— Build and start the client app.npm run build
— Build the client app to dist.npm run dev
— Build and watch for changes (hot reload).npm run format
— Format the src using Prettier.npm run lint
— Lint the src using ESLint.
This client has an optional "guest mode" for xxscreeps that can be enabled with --guest
and provides a read-only view of the server when not signed in. To sign in with your Steam account, select "Sign Out" first, then click the Steam icon to sign in and play as normal.