1.0.2 • Published 6 years ago

y-downloader v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

What is y-downloader?

y-downloader is a node module that will help you download a youtube video in a simple way.

you can install the node module using npm

npm install y-downloader

The node module works well with Promises

How to use the package?

var ydl=require('y-downloader');
var download={
  name:videoName,
  path:PathDirectory,
  google_key:google_api_key
}
ydl(download)
.then((msg)=>{
  console.log(msg);
  })
.catch((err)=>{
  console.log(err);
  });