https://github.com/p1atdev/siren
Arknights OST Downloader with Deno
https://github.com/p1atdev/siren
arknights deno monstersiren
Last synced: 3 months ago
JSON representation
Arknights OST Downloader with Deno
- Host: GitHub
- URL: https://github.com/p1atdev/siren
- Owner: p1atdev
- License: mit
- Created: 2022-06-16T16:26:10.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-16T18:06:36.000Z (about 3 years ago)
- Last Synced: 2025-02-13T18:42:40.693Z (5 months ago)
- Topics: arknights, deno, monstersiren
- Language: TypeScript
- Homepage: https://deno.land/x/siren
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Siren - Arknights OST Downloader in CLI -

[](https://velociraptor.run)
## Installation
TODO
## Use as a library
Import
```ts
// deps.tsexport * as siren from "https://deno.land/x/[email protected]/mod.ts"
```Then,
```ts
// main.tsimport { getSong } from "./deps.ts"
const song = await getSong("880378")
console.log(song.title) // "Operation Blade"
console.log(song.sourceUrl) // https://res01.hycdn.cn/*[random]*/*.mp3
```