npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

y2mate-dl

v1.0.4

Published

Scraper for download youtube videos and audio. (100% free)

Downloads

213

Readme

Scraper for download youtube videos and audio. (100% free)


You can also use my ytdl or other apis for free: https://vihangayt.me

Example audio

const { ytmp3 } = require('y2mate-dl');

const res = await ytmp3('https://youtu.be/0geqOYqwL0s');
console.log(res);

OutPut

{
  owner: '@VihangaYT',
  status: true,
  title: 'Lelena (ලෙලෙනා) - Nilan Hettiarachchi Official Music Video',
  size: '2.96 MB',
  mp3: 'https://dl217.dlmate01.online/?file=M3R4SUNiN3JsOHJ6WWQ2a3NQS1Y5ZGlxVlZIOCtyZ0luZGsveVJGb1JJNGM0Njk1a3NhRVp1d2ZhNFZaaUtpR1ZQc0VzQnlPTlBMYWUwU252NVFuVERpcDhzSXBzRDdkOG8wb1dzRjRIVG4rbmUrZ256QjZ3aXJnYmRIT1hvNWZhWEowN1UxemdHQ1Z4ZjNSaGdYNXAzWHc0aCtsZFNzZnBpNEpPTENDMTVKWWhpeVpTZlNoZ2JZYy95dWU5cDhIMmYrUS8weTl6N2N5dmRKMFlVcDlmNUZUNXBMd3krVEZwRlVZZzVFZjBrU2JwdVNnRDUwOEhhbWhkQ0pqTnlFMi8rYnJXUlFobnlJYjZVT0g1N2dKdm5OSGZMQW1ybVd4OXEvY1ZYbWRadEwvWFpTUUkrVzQrNVN2dTZzeDVoT1g4N09CanA5R3FRdXZUY3YwRzRCT29rWTVwUDdRdEpobGxnUG9uQndNMytRTGx3PT0%3D',
  buffer: <Buffer 49 44 33 04 00 00 00 00 01 00 54 58 58 58 00 00 00 12 00 00 03 6d 61 6a 6f 72 5f 62 72 61 6e 64 00 64 61 73 68 00 54 58 58 58 00 00 00 11 00 00 03 6d ... 3108031 more bytes>
}

Example video

const { yt720 , yt480 , yt360 } = require('y2mate-dl');

const res = await yt720('https://youtu.be/0geqOYqwL0s'); // yt720 Or yt480 or yt360
console.log(res);

OutPut

{
  owner: '@VihangaYT',
  status: true,
  title: 'Lelena (ලෙලෙනා) - Nilan Hettiarachchi Official Music Video',
  quality: 720,
  type: 'mp4',
  url: 'https://dl206.dlmate68.xyz/?file=M3R4SUNiN3JsOHJ6WWQ2a3NQS1Y5ZGlxVlZIOCtyZ0luZGsveVJGb1JJNGM0Njk1a3NhRVp1d2ZhNFZaaUtpR1ZQc0VzQnlPTlBMYWUwU252NVFuVERpcDhzSXBzRDdkOG8wb1dzRjRIVG4rbmUrZ256QjZ3aXJnYmRIT1hvNWZhWEowbkJjeGd6YmR3ZUdBL3hQeHYzaVN0MHlYWkhsUDRCMFNNdURFNUoxTmtEdnRZdWV3bHNJai9HUE54SU1iMS9HSnNVLzF6TDkxOVpkNVcwaHhmWkZpMTVQNTN2N3pyVUlObEpBZHlFeW5vZUd1RDZFNkdxT1hlajV4TWgwRS9Qem1YeVFJeGlFYjkxUHU4YW8wd1ZrWVpvd2wrMTJpcnFDNVZuR1ZicGF3U0pTTGQ5Mk80TURoOHZCenVsWElxK2FhemN3WnhGaitHcCt2RlpjYXRFa2NvcXVHNXNkcmt4Q3EweFVmMzdSUWt4aXNKUjFrQ0lSZGZuTU5kQT09',
  buffer: <Buffer 00 00 00 20 66 74 79 70 69 73 6f 6d 00 00 02 00 69 73 6f 6d 69 73 6f 32 61 76 63 31 6d 70 34 31 00 00 00 08 66 72 65 65 03 25 43 7a 6d 64 61 74 00 00 ... 52916816 more bytes>,
  size: '50.47 MB'
}