Package Exports
- steamworkshopdownloader
- steamworkshopdownloader/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (steamworkshopdownloader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Download your Mods,Workshop items with SteamWorkshopDownloader on NodeJS. Currently using steamworkshopdownloader.io backend.
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