Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.ts

export * as siren from "https://deno.land/x/[email protected]/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
```