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

screeps-performance-server

v1.14.7

Published

**Windows not supported, contact Panda for support**

Downloads

115

Readme

Screeps-Performance-Server

Windows not supported, contact Panda for support

This is a Screeps server setup that includes milestones and the Stats mod built in. It was originally created by TooAngel and this version includes data export for the milestones results. The exported data includes:

  1. Milestones reached
  2. Room status (ControllerId, creep count, level, progress, structure count)
  3. Tick count
  4. Start/end time

Requirements

  • Node.js 16.x
  • Docker-Compose

Installation

  1. Clone this repo
  2. Run npm install to install dependencies

Setup

  • Update all .example files to your needs. This is not required if you use the default setup.

Custom bot

  1. Create a new folder in the bots directory
  2. Add your bot's JS files to the new folder (the entry file must be named main.js)
  3. Update the config.yml file's bots.bot string to the path of your bot

Run commands

Config

  • --debug: listen to setup Docker logs
  • --force: force the non-.example config files to be overwritten
  • --botFilePath: change the path to the bot folder (where the main.js file is located or all other .js files are located)
  • --steamKey: change the Steam key used to authenticate the bot
  • --deleteLogs: delete the logs folder on startup

Network

  • --serverPort: change the port the server will run on
  • --cliPort: change the port the CLI will run on
  • --relayPort: change the port the relay will run on
  • --disableMongo: disable the MongoDB database and use default db instead

Server

  • --maxBots: limit the number of bots that can be spawned
  • --tickDuration: change the tick duration (default: 100 (ms)
  • --maxTickCount: limit the number of ticks the server will run
  • --maxTimeDuration: change the maximum duration of the server in minutes (default: 60 minutes)

Exporting

  • --discordWebHookUrl: send the result to the configured webhook
  • --discordUsername: change the username of the webhook message, default: Screeps Performance Server
  • --githubOwner: username of the GitHub user that owns the repo to report to
  • --githubRepo: name of the repo on GitHub to report to
  • --githubAuth: add a GitHub token to the request header
  • --pasteBinUrlDevKey: add a PasteBin dev key to send the result to PasteBin
  • --logFilter: filter the logs by a string and export them to an file called logListener in logs folder

Usage

  • Run npm run server to start the server

After you see Start the simulation with runtime (... ticks if chosen limited tick run), go to localhost:21025 (if not changed) and check out the admin utils dashboard. The default pre-spawned user password is password.

You can also start the server using npx by running npm i -g screeps-performance-server and then npx screeps-performance-server with optional parameters (see #Configuration run commands)

Milestones

You can add milestones to the config file, which will be checked every tick. If one of them is reached, it will be logged. The server should stop after all milestones have been reached.

To add a milestone, you can edit or add one and add/update one of the following options:

  • level (rcl)
  • creeps (count)
  • structures (count)