NodeJs api wrapper for piped
Find a file
2023-08-09 10:05:30 +03:00
.github/workflows doc: deploy docs 2023-08-09 09:49:36 +03:00
src refactor: add Types 2023-08-09 10:05:30 +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 doc: deploy docs 2023-08-09 09:49:36 +03:00
package.json doc: deploy docs 2023-08-09 09:49:36 +03:00
README.md doc: update version and fix readme 2023-08-03 21:34:10 +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).

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