
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
steamcmd-wrapper
Advanced tools
SteamCMD-Wrapper allows to you use SteamCMD on NodeJS. You can use many features of SteamCMD and get command responses.
With npm installed, run
> npm install steamcmd-wrapper
Import
const {SteamCMD,Downloader} = require('steamcmd-wrapper');
| SteamCmd Commands | Avaible at Wrapper | |
| login | ✔️ | Login |
| app_update | ✔️ | AppUpdate |
| workshop_download_item | ✔️ | WorkshopDownload |
| exit | ✔️ | Exit |
Ready to work !
Windows
var Wrapper= new SteamCMD({BinDir:"steamcmd.exe"})
Linux
var Wrapper= new SteamCMD({BinDir:"./steamcmd.sh"})
(async function(){
await Wrapper.Create(function(data){
console.log(data)
})
})()
(1)
var Login= await Wrapper.Login({
Username:"<YOUR NAME>",
Password:"<YOUR PASS>",
Guard:"<YOUR GUARD CODE>",
});
if(Login.type==0){
// Work area
}else{
console.log(Login.message);
}
ShowCode (2)

(1)
function CallBackForDownload(data){
console.log(data)
}
var DownloadAPP= await Wrapper.AppUpdate(
{
InstPath:"example/gamefolder/",
AppID:610360,
Validate:true,
cb:CallBackForDownload
}
)
Show Code (2)

var Down= await Downloader.Download("./test/",function(data){
console.log(data);
});
console.log("Downloaded !");

Developer: © ErenKrt
FAQs
SteamCMD wrapper for NodeJS
The npm package steamcmd-wrapper receives a total of 0 weekly downloads. As such, steamcmd-wrapper popularity was classified as not popular.
We found that steamcmd-wrapper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.