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 🙏

© 2025 – Pkg Stats / Ryan Hefner

redsmith

v0.1.2

Published

Interactive wizard for forging Arma Reforger server configuration files

Downloads

25

Readme

Redsmith

Generate, automate, and validate Arma Reforger server configuration files with an interactive wizard or command-line tools.

Quick Start

No installation required - run directly with npx:

npx redsmith

Note: Requires Node.js to be installed on your system.

Usage

Interactive Wizard

As above, run without any options to start the interactive wizard:

npx redsmith

The wizard will guide you through creating a complete server configuration file.

Command Line

Generate configurations directly with command-line options:

npx redsmith --name "My Server" --scenario conflict-everon --port 2001 --output-file server.json --yes

Common Options

  • --name <name> - Server name
  • --scenario <scenario> - Scenario (use npx redsmith list-scenarios to see options)
  • --port <port> - Server port
  • --output-file <path> - Where to save the configuration
  • --yes - Skip confirmations for automation
  • --validate - Validate the generated configuration

Examples

Create a basic server:

npx redsmith --name "Weekend Warriors" --scenario conflict-everon --port 2001 --output-file server.json --yes

Server with mods:

npx redsmith --name "Modded Server" --scenario conflict-everon --mods "59F0B6EA44FA0442,A123B456C789DEF0" --output-file server.json --yes

Load mods from file:

npx redsmith --name "Community Server" --mod-list-file my-mods.txt --output-file server.json --yes

Validate existing configuration:

npx redsmith validate server.json

Mod Support

Redsmith supports loading mods in multiple ways:

Command line: --mods "modid1,modid2"
From file: --mod-list-file mods.txt

Example mod list file (mods.txt):

59F0B6EA44FA0442
A123B456C789DEF0
DEADBEEFDEADBEEF

Extract Mods from Existing Config

Extract mod lists from existing server configurations:

# Extract to stdout (JSON format)
npx redsmith extract mods server.json

# Extract to file with format detection
npx redsmith extract mods server.json mods.txt
npx redsmith extract mods server.json mods.csv

# Specify output format
npx redsmith extract mods server.json --output yaml

Requirements

  • Node.js (any recent version)
  • Internet connection for npx to download redsmith