0.1.1 • Published 8 years ago

simple-youtube v0.1.1

Weekly downloads
12
License
ISC
Repository
github
Last release
8 years ago

Simple Youtube

A simple way to access the youtube search API

###Getting Started

####Install

npm install simple-youtube --save-dev

####Options

* key: String (required): Youtube API Key
* term: String (required): Search term
* number: Number (optional, defaults to 5): Max number of results

####Example Search for 'hello world' and return 15 results

import SimpleYT from 'simple-youtube'

SimpleYT({
    key: YOUR_API_KEY,
    term: 'hello world',
    number: 15,
  }, (videos) => {
    // Callback body
  })