Constructor
# new SteamCmd(auth, confignullable)
Create an instance of SteamCmd with the credentials of a specified Steam account
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
auth |
SteamAuth | Steam account authentication for Steam account with a copy of Slay the Spire | |
config |
SteamCmdConfig |
<nullable> |
Optional config for steam cmd |
Example
const steamAuth: SteamAuth = { username: 'example_user', password: 'P@55W0RD' };
const steamCmd = new SteamCmd(steamAuth);
Classes
Members
Methods
# static getExitCodeDescription(code) → {string}
Get the description of a specified SteamCmd SteamCmdExitCode
Parameters:
Name | Type | Description |
---|---|---|
code |
SteamCmdExitCode | The exit code to get the description of |
string
Example
const exitDescription: string = getExitCodeDescription(
SteamCmdExitCode.UNABLE_TO_INSTALL_APP);
console.log(exitDescription); // 'unable to install app'
# static isAppInstalled(gameInstallDir) → {boolean}
Check if a steam app is installed
Parameters:
Name | Type | Description |
---|---|---|
gameInstallDir |
string | Install directory of steam app |
boolean
Example
const isSlayTheSpireInstalled: boolean = SteamCmd.isAppInstalled('./.sts'); // false
# async install()
Download and extract SteamCmd files to the specified install directory. If no install
directory was specified in the constructor with SteamCmdConfig, then SteamCmd is
installed to the default install directory (./.steamcmd)
Example
// Install SteamCmd to './.steamcmd'
const steamAuth: SteamAuth = { username: 'example_user', password: 'P@55W0RD' };
const steamCmd = new SteamCmd(steamAuth);
await steamCdm.install();
# async installApp(guardCode, appId, gameInstallDir)
Install a Steam game with the specified app ID
Parameters:
Name | Type | Description |
---|---|---|
guardCode |
string | Steam guard code |
appId |
number | ID of the steam app to install |
gameInstallDir |
string | Directory to install the game to |
Example
// Install Slay the Spire to './.sts'
const steamAuth: SteamAuth = { username: 'example_user', password: 'P@55W0RD' };
const steamCmd = new SteamCmd(steamAuth);
await steamCmd.installApp(646570, './.sts', '12345');
# async runCommand(guardCode, command) → {Promise.<SteamCmdExitCode>}
Run a SteamCmd command
Parameters:
Name | Type | Description |
---|---|---|
guardCode |
string | Steam guard code |
command |
Array.<string> | The SteamCmd command to run |
Promise.<SteamCmdExitCode>
Example
// Install and validate the Counter Strike: Global Offensive dedicated server
const steamAuth: SteamAuth = { username: 'example_user', password: 'P@55W0RD' };
const steamCmd = new SteamCmd(steamAuth);
await steamCmd.runCommand(['+force_install_directory', './cs_go/', '+app_update', '740',
'validate', '+quit'], '12345');