NodeJs api wrapper for piped
Go to file
2023-08-10 13:41:44 +03:00
.github/workflows doc: fix workflow 2023-08-09 10:05:44 +03:00
src fix: Item type 2023-08-10 13:41:44 +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 doc: deploy docs 2023-08-09 09:49:36 +03:00
.npmignore doc: deploy docs 2023-08-09 09:49:36 +03:00
LICENSE Initial commit 2023-08-03 19:44:37 +03:00
package-lock.json fix: Item type 2023-08-10 13:41:44 +03:00
package.json fix: Item type 2023-08-10 13:41:44 +03:00
README.md doc: add docs to readme 2023-08-09 10:09:28 +03:00
tsconfig.json fix: change got to axios 2023-08-08 18:03:31 +03:00

Piped API

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

Docs

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);