New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cher-twitter

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cher-twitter

A source stream implementation for [cher](https://github.com/istrategylabs/cher)

0.3.6
latest
Source
npm
Version published
Weekly downloads
31
63.16%
Maintainers
1
Weekly downloads
 
Created
Source

cher-twitter

A source stream implementation for cher

Usage

  const Cher = require('cher');
  const tools = require('cher-tools');
  const cherTwitter = require('cher-twitter');
  const save = tools.pipeline.save;
  // config helper
  const config = tools.utils.config;

  // Cher streams get configured here.
  const sourceStreams = [
    {
      name: 'twitter',
      module: cherTwitter
    }
  ];

  config.fetch({
    pipeline: [ save ],
    sourceStreams: sourceStreams
  })
  .then(Cher.construct)
  .spread((streams, cher) => {
      const twitterSource = cher.getStream('twitter');
      twitterSource
        .start()
        .spread((dataChannel, twitterSettings) => {
          dataChannel.on('data', (data) => {
            console.log(data) // a twitter post or comment or whatever
          });
        });
    });

Tests

Setup some environment variables

$ echo "twitter_CLIENT_ID=<your_client_id>" >> test/test.env
$ echo "twitter_CLIENT_SECRET=<your_client_secret>" >> test/test.env
$ echo "twitterAccessToken=<your_really_long_access_token>" >> test/test.env
$ echo "PAGES=<a_fb_page_id>" >> test/test.env
$ echo "POSTS=<a_fb_post_id_with_comments>" >> test/test.env

Run em'

$ npm test

FAQs

Package last updated on 25 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts