steamworkshopdownloader

Download your Mods, Workshop items with SteamWorkshopDownloader on NodeJS. Currently using steamworkshopdownloader.io backend.


Keywords
steam, steam workshop, steam workshop downloader
License
ISC
Install
npm install steamworkshopdownloader@2.0.7

Documentation

Download your Mods,Workshop items with SteamWorkshopDownloader on NodeJS. Currently using steamworkshopdownloader.io backend.

Built with ❤︎ by EpEren

Usage

With npm installed, run

> npm install steamworkshopdownloader
- OR - 
> npm install steamworkshopdownloader -g

Global Using

You can download specific folder with global using.

> cd ./YourFolder
> steamwd {WorkshopID}
- - - - - - - - - - - -
> steamwd 2712258971 274974446 274974442

Import Using

import {Downloader} from 'steamworkshopdownloader'

const MyClient= new Downloader();

Examples

Get info of workshop from ID.

(async function(){
    console.log(await MyClient.Info([274974446]));
})()

Download workshop from ID(s).

(async function(){
    //[IDS],DownloadPath
    var Down= await MyDown.Download([2712258971],"./downs/");
    console.log(Down);
})()

Developer: © ErenKrt