Tiny module to scrap youtube playlist metadata and its videos (not limited to 100)
npm install @maroxy/ytfps
const ytfps = require('ytfps');
// TypeScript: import ytfps from 'ytfps'; //with --esModuleInterop
ytfps('PLAbeRqyTx1rIGWY13HgPyh0VF0LdoTQFp').then(playlist => {
do_something(playlist);
}).catch(err => {
throw err;
});ytfps(id)
Scraps the supplied playlist and returns a promise with its metadata.
-
id- youtube playlist's id
- or youtube playlist's URL
MIT