Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fdciabdul/yts

Youtube search query without API
https://github.com/fdciabdul/yts

Last synced: about 1 month ago
JSON representation

Youtube search query without API

Awesome Lists containing this project

README

        

# Youtube search query without API

## install

`npm install https://github.com/fdciabdul/yts.git`

Test :

```javascript

const yt = require('yts_noapi');
let query = "search term";
yt.search(query)
.then(function(res) {
console.log(res)

});

```

or with await

```javascript

const yt = require('yts_noapi');
let query = "search term";
async function search(){
const search = await yt.search(query);
console.log(search);
}
search();

```