Socket
Socket
Sign inDemoInstall

youtube-search-no-limit

Package Overview
Dependencies
6
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    youtube-search-no-limit

Because of its reliance on the Youtube search page format, if Youtube were to release a new version that does not comform to the current formatting this package may break. Works as of 2022-06-22.


Version published
Weekly downloads
99
increased by13.79%
Maintainers
3
Install size
8.86 MB
Created
Weekly downloads
 

Readme

Source

YouTube Search No Limit

Warnings!

Because of its reliance on the Youtube search page format, if Youtube were to release a new version that does not comform to the current formatting this package may break. Works as of 2022-06-22.

Quick Start

Installation

# Using npm
$ npm install youtube-search-no-limit

# Using yarn
$ yarn add youtube-search-no-limit

# Using pnpm
$ pnpm i youtube-search-no-limit

Example Usage

import { search } from 'youtube-search-no-limit'
const videos = await search('Cat videos')

console.log(`Found ${videos.length} videos:`)
videos.forEach((video) => {
  console.log(`\t${video.title} by ${video.channel.name} with a duration of ${video.durationText}`)
})

How it works

This package uses the normal Youtube search page instead of the API, thus circumventing the API limit. Therefore, this library can do more free searches than the 100 that you can do with the normal (free) API in a day.

Supported Node.js Versions

Should work on any Node.js version that can use ESM modules (i.e. type="module" in package.json).

License

Uses the MIT license.

See LICENSE

Keywords

FAQs

Last updated on 22 Jun 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc