Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/p1atdev/siren
Arknights OST Downloader with Deno
https://github.com/p1atdev/siren
arknights deno monstersiren
Last synced: 16 days 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-16T18:06:36.000Z (over 2 years ago)
- Last Synced: 2024-12-09T00:30:12.824Z (28 days 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 -
![Deno JS](https://img.shields.io/badge/deno%20js-000000?style=for-the-badge&logo=deno&logoColor=white)
[![vr scripts](https://badges.velociraptor.run/flat.svg)](https://velociraptor.run)
![Test](https://github.com/p1atdev/siren/actions/workflows/test.yml/badge.svg)## 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
```