3.1.4 • Published 2 years ago

steamworkshopdownloader v3.1.4

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

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 --help
>
> - - - - - - - - - - -
> -c = Item count of same time download | default : 20
> -d = Download dependencies. | default : false
> -u = Unzip item | default : false
> -ud = Unzip and delete zip | default : false
> - - - - - - - - - - -
>
> - - - - - - - - - - -
> steamwd [WorkshopIDS]
> - - - - - - - - - - -
> steamwd 2712258971 274974446 274974442
> - - - - - - - - - - -
> steamwd 2712258971 -d -u
> - - - - - - - - - - -
> steamwd download 2712258971 -ud
> - - - - - - - - - - -

Import Using

import { Client } from 'steamworkshopdownloader'

const MyClient= new Client();

Examples

Get info of workshop from ID.

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

Get workshop files from item(s).

(async function(){
    var items= await MyClient.getItems([2712258971]);

    var res= await MyClient.getFilesFromItems(items.data,(Statu)=>{
        console.log(items.data.find(x=>x.publishedfileid==Statu.publishedfileid).title_disk_safe+" => %"+Statu.progress+" | "+Statu.status);
    });

    console.log(res);
})()

Get workshop files from ID(s).

(async function(){
    var res= await MyClient.getFiles([2712258971],(Statu)=>{
        console.log(Statu.publishedfileid+" => %"+Statu.progress+" | "+Statu.status);
    });

    console.log(res);
})()

Developer: © ErenKrt

4.0.0-beta.1

2 years ago

3.1.3

2 years ago

3.1.4

2 years ago

3.0.4

2 years ago

3.1.2

2 years ago

3.0.3

2 years ago

3.0.2

2 years ago

3.1.0

2 years ago

3.0.0

2 years ago

2.0.5

2 years ago

2.0.7

2 years ago

2.0.6

2 years ago

2.0.9

2 years ago

2.0.8

2 years ago

2.0.4

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.0.1

3 years ago

1.0.0

3 years ago