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: about 1 month ago
JSON representation

📷 Get details about a Periscope live

Lists

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;
}
});
```