Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gajop/spring-nextgen-dl
https://github.com/gajop/spring-nextgen-dl
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/gajop/spring-nextgen-dl
- Owner: gajop
- License: mit
- Created: 2021-05-03T15:33:28.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-03T17:49:03.000Z (over 3 years ago)
- Last Synced: 2024-11-05T19:17:17.083Z (12 days ago)
- Language: TypeScript
- Size: 96.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.