Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gajop/spring-nextgen-dl


https://github.com/gajop/spring-nextgen-dl

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

# spring-nextgen-dl
Spring NextGen download system

## Usage

`npm i --save spring-nextgen-dl`

```ts
import { NextGenDownloader } from 'spring-nextgen-dl';

(async () => {
const butlerPath = 'path-to-butler-bin';
const writePath = 'path-to-springdir';

const nextGenDownloader = new NextGenDownloader(butlerPath, writePath);

await nextGenDownloader.download('SpringBoard-Core/SpringBoard-Core');
await nextGenDownloader.download('beyond-all-reason/BYAR-Chobby');
await nextGenDownloader.download('Chobby/Chobby');
})();
```

See http://github.com/gajop/spring-launcher for details on how to include butler into your project.