https://github.com/hunam6/lyrics-deno
A lyrics finder/scraper for Deno
https://github.com/hunam6/lyrics-deno
genius google lyricfind lyrics musixmatch scraper
Last synced: 7 months ago
JSON representation
A lyrics finder/scraper for Deno
- Host: GitHub
- URL: https://github.com/hunam6/lyrics-deno
- Owner: Hunam6
- License: mit
- Created: 2021-02-26T19:17:02.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-11T23:20:36.000Z (over 4 years ago)
- Last Synced: 2024-11-17T16:38:09.953Z (7 months ago)
- Topics: genius, google, lyricfind, lyrics, musixmatch, scraper
- Language: TypeScript
- Homepage: https://deno.land/x/lyrics
- Size: 12.7 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
lyrics-deno
A lyrics finder/scraper for Deno
---
#### Example
```typescript
import {lyrics} from 'https://deno.land/x/lyrics/mod.ts'
lyrics('radioactive imagine dragons').then((res) => console.log(res))
```Output
```text
Whoa, oh, oh
Whoa, oh, oh
Whoa, oh, oh
WhoaI'm waking up to ash and dust
I wipe my brow and I sweat my rust
I'm breathing in the chemicalsI'm breaking in, shaping up, then checking out on the prison bus
This is it, the apocalypse
WhoaI'm waking up, I feel it in my bones
Enough to make my systems blow
Welcome to the new age, to the new age
Welcome to the new age, to the new age
Whoa, oh, oh, oh, oh, whoa, oh, oh, oh, I'm radioactive, radioactive
Whoa, oh, oh, oh, oh, whoa, oh, oh, oh, I'm radioactive, radioactiveI raise my flags, don my clothes
It's a revolution, I suppose
We'll paint it red to fit right in
WhoaI'm breaking in, shaping up, then checking out on the prison bus
This is it, the apocalypse
WhoaI'm waking up, I feel it in my bones
Enough to make my systems blow
Welcome to the new age, to the new age
Welcome to the new age, to the new age
Whoa, oh, oh, oh, oh, whoa, oh, oh, oh, I'm radioactive, radioactive
Whoa, oh, oh, oh, oh, whoa, oh, oh, oh, I'm radioactive, radioactiveAll systems go, the sun hasn't died
Deep in my bones, straight from insideI'm waking up, I feel it in my bones
Enough to make my systems blow
Welcome to the new age, to the new age
Welcome to the new age, to the new age
Whoa, oh, oh, oh, oh, whoa, oh, oh, oh, I'm radioactive, radioactive
Whoa, oh, oh, oh, oh, whoa, oh, oh, oh, I'm radioactive, radioactive
```#### Doc
```typescript
lyrics(song: string, string: boolean)
```**|** `song` is the song name, with the artist name or not
**|** `string`*(optional, default = `true`)* `true` for a string output and `false` for an array output
**↳** return the lyrics of the song
### Credits
Thanks [@b-fuze](https://github.com/b-fuze) for it's [Deno DOM](https://github.com/b-fuze/deno-dom).