Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/purplehorrorrus/node-livestream-metainfo
Lightweight module for fetching basic meta information from livestreams
https://github.com/purplehorrorrus/node-livestream-metainfo
Last synced: 7 days ago
JSON representation
Lightweight module for fetching basic meta information from livestreams
- Host: GitHub
- URL: https://github.com/purplehorrorrus/node-livestream-metainfo
- Owner: PurpleHorrorRus
- License: mit
- Created: 2020-12-24T14:16:23.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-30T22:59:57.000Z (almost 4 years ago)
- Last Synced: 2024-04-25T07:20:31.731Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## About
Lightweight module for fetching basic meta information from livestreams
## Installing
Add to your project
```bash
npm install node-livestream-metainfo
// or
yarn add node-livestream-metainfo
```## Example
```javascript
const parser = require("node-livestream-metainfo");const station = await parser("https://....");
console.log(station);
```