https://github.com/p1atdev/siren
Arknights OST Downloader with Deno
https://github.com/p1atdev/siren
arknights deno monstersiren
Last synced: about 1 month 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 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-16T18:06:36.000Z (about 4 years ago)
- Last Synced: 2026-02-02T07:55:14.427Z (5 months ago)
- Topics: arknights, deno, monstersiren
- Language: TypeScript
- Homepage: https://deno.land/x/siren
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- 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.ts
export * as siren from "https://deno.land/x/siren@v0.1.0/mod.ts"
```
Then,
```ts
// main.ts
import { 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
```