This repository contains four main projects, all related to interacting with the YouTube API. Each project is written in TypeScript and can be built and tested independently.
For more example of each project you can take a look about them on npm
- The youtube-video-core project contains the core code for interacting with the YouTube API.
- It defines several custom errors such as VideoUnavailableError and TooManyRequestsError, as well as a Core class that appears to be the basis of interaction with the YouTube API.
This plugin can be downloaded with the following command
npm install youtube-video-core
- The youtube-video-dl project apperas to be designed to download youtube videos or shorts. that appears to be the basis of interaction with the YouTube API.
- It uses the core code from youtube-video-core and defines an Downloader class that appears to be responsible for downloading a video.
This plugin can be downloaded with the following command
npm install youtube-video-dl
- The youtube-video-metric project appears to be designed to extract specific metrics from YouTube videos.
- It uses the core code from youtube-video-core and defines an Inspector class that appears to be responsible for extracting the metrics.
This plugin can be downloaded with the following command
npm install youtube-video-metric
- The youtube-video-transcript project is designed to interact with the YouTube transcript API.
- It allows for retrieving transcripts of YouTube videos in one or more languages.
- It defines a Transcriptor class that appears to be responsible for interacting with the transcript API.
This plugin can be downloaded with the following command
npm install youtube-video-transcript
Each project can be installed independently by moving into the project directory and running npm install
.
Each project can be built independently by moving into the project directory and running npm run build
.
Each project can be tested independently by moving into the project directory and running npm run test
.