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 🙏

© 2026 – Pkg Stats / Ryan Hefner

screepsmod-auth

v2.9.0

Published

[![NPM info](https://nodei.co/npm/screepsmod-auth.png?downloads=true)](https://npmjs.org/package/screepsmod-auth)

Downloads

5,038

Readme

screepsmod-auth

This adds user/pass auth to the screeps private server

NPM info

Circle CI

Installation

  1. npm install screepsmod-auth in your server folder.
  2. Thats it!

Usage

Web Form Method

  1. Open the steam client at least once (Required to create initial account)
  2. Goto http://yourServerHostOrIP:21025/authmod/password/
  3. Enter your desired password
  4. Click Signin with steam
  5. Your password should be set and you be able to login via API

Server CLI method

  1. Open the screeps server CLI (npx screeps cli or via Steam Server UI)
  2. Run auth.setPassword('Username', 'YourDesiredPassword')
  3. Now you should be able to login via API

Configuration

Registration settings can be provided either via .screepsrc or, with screepsmod-admin-utils installed, config.yml (serverConfig).

When the same setting exists in both, config.yml takes precedence, and those settings are live-reloaded without restarting the server.

Server Password

Set SERVER_PASSWORD in the environment to protect the server and disable user registration.

When set:

  • New user registration via /api/register/submit is rejected
  • config.auth.info.allowRegistration is false
  • Authenticated API requests include the password as the X-Server-Password header

Clients connecting to the server must send this password (for example via the X-Server-Password header) in addition to their auth token.

Github Auth

Set GITHUB_CLIENT_ID and GITHUB_CLIENT_SECRET in the environment.

Make sure to set the callback url to point to /api/auth/github/return on your server. ex: https://screeps.mydomain.com/api/auth/github/return
Get the id and secret from your Github settings: https://github.com/settings/developers

GitLab Auth

Set GITLAB_APP_ID, GITLAB_APP_SECRET, and optionally GITLAB_URL (defaults to https://gitlab.com) in the environment.

Initial CPU and Spawn Blocking

You can set the initial CPU that gets placed on a user (Steam users always receive 100), and also control whether the new user can place spawns. This can be used in combination with a whitelist or manual approval to control spawning.

.screepsrc

[auth]
registerCpu = 100
preventSpawning = false

config.yml

serverConfig:
  auth:
    registerCpu: 100
    preventSpawning: false

Server CLI commands

This mod uses the auth namespace to expose commands to the server's CLI:

  • auth.setPassword(username, password) - Set a user's password for API login
  • auth.createAuthToken(username, description?) - Creates a full-access API token for a given user
  • auth.listUserTokenRateLimits(username) - Lists all tokens for a user and active no-ratelimit windows.
  • auth.getTokenRateLimit(username?) - Shows currently active rate-limit usage per token (optionally scoped to one user).

Auth token rate limiting

Rate limiting for persistent API tokens is disabled by default. When enabled, limits match the official Screeps auth token docs.

Enable via .screepsrc:

[auth]
rateLimitEnabled = true
ratelimit.global = 240,60
ratelimit.GET.api.user.memory = 2880,86400
ratelimit.GET.api.user.code = null

Key pattern: ratelimit.<METHOD>.<path.with.dots> (e.g. ratelimit.GET.api.game.market.orders = 120,3600). Value is max,window in seconds; max alone overrides only the limit count; null disables that bucket (max: null).

serverConfig:
  auth:
    rateLimitEnabled: true
    rateLimits:
      global: { max: 240, window: 60 }
      "GET /api/user/memory": { max: 2880 }
      "GET /api/user/code": { max: null }

API

config.auth.config

Resolved mod configuration (merged from .screepsrc and config.yml). Examples: config.auth.config.registerCpu, config.auth.config.rateLimitEnabled, config.auth.config.rateLimits.

config.auth.authUser(username,password)

Returns a Promise, resolves to either the user object or false