Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matteocontrini/node-periscope-stream
📷 Get details about a Periscope live
https://github.com/matteocontrini/node-periscope-stream
node node-periscope-stream nodejs periscope periscope-live
Last synced: 3 months ago
JSON representation
📷 Get details about a Periscope live
- Host: GitHub
- URL: https://github.com/matteocontrini/node-periscope-stream
- Owner: matteocontrini
- License: mit
- Created: 2015-04-17T19:31:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-11T22:11:42.000Z (almost 7 years ago)
- Last Synced: 2024-05-22T22:31:35.089Z (6 months ago)
- Topics: node, node-periscope-stream, nodejs, periscope, periscope-live
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 41
- Watchers: 8
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-periscope-stream
Get details about a Periscope live## Install
```js
npm install node-periscope-stream
```## Use
```js
var periscope = require('node-periscope-stream');
periscope('https://www.periscope.tv/w/[example]', function(err, details) {
if (err) {
console.log(err);
return;
}
});
```