NodeJs api wrapper for piped
Find a file
2023-08-03 21:00:47 +03:00
src feat: all endpoints 2023-08-03 21:00:47 +03:00
.eslintrc.json feat: trending 2023-08-03 20:36:16 +03:00
.gitattributes Initial commit 2023-08-03 19:44:37 +03:00
.gitignore feat: trending 2023-08-03 20:36:16 +03:00
.npmignore feat: trending 2023-08-03 20:36:16 +03:00
LICENSE Initial commit 2023-08-03 19:44:37 +03:00
package-lock.json feat: trending 2023-08-03 20:36:16 +03:00
package.json feat: all endpoints 2023-08-03 21:00:47 +03:00
README.md feat: all endpoints 2023-08-03 21:00:47 +03:00
tsconfig.json feat: trending 2023-08-03 20:36:16 +03:00

Piped API

This is the API wrapper for Piped in Node.js (Typescript).

Installation

npm i piped-api

Usage

import { PipedApi } from "piped-api";

const api = new PipedApi("https://ytapi.dc09.ru");

let trending = await api.trending("US");

console.log(trending[0].title);