Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

socialmediajs

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

socialmediajs

The eassiest way to grab info from the YouTube API and Twitch Tracker

  • 2.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Social Media JS

This is an NPM module that grabs data from different API's and make's it readeble

YouTube API

Promise Example


const { YouTube } = require('socialmediajs');

__Test__();

function __Test__() {
  YouTube("UCBUVGPsJzc1U8SECMgBaMFw", "YOUR_API_KEY").then(data => {
    console.log(data);
  });
}


Async/await Example

const { YouTube } = require('socialmediajs');

async function __test(channelID, apiKey) {
    const data = await YouTube(channelID, apiKey);
    console.log(data)
    return data
}

__test('A CHANNEL ID', ' YOUR YOUTUBE API KEY');


Twitch Scrapper

Promise Example

const { Twitch } = require('socialmediajs')

function ybicaStats() {
Twitch('ybicanoooobov').then((results) => {
  console.log(results)
})
}

ybicaStats()

Async/Await Example

const { Twitch } = require('socialmediajs')

async function ybicaStats() {
  const results = await Twitch('ybicanoooobov')
  console.log(results)
}

ybicaStats()

Keywords

FAQs

Package last updated on 28 Mar 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc