Skip to content

A TypeScript library that contains API handlers for the Torrust Index project.

License

Notifications You must be signed in to change notification settings

mario-nt/torrust-index-api-lib

This branch is 4 commits behind torrust/torrust-index-api-lib:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1c1e791 · Jan 29, 2025

History

71 Commits
Oct 5, 2023
Oct 4, 2024
Jan 24, 2025
Mar 14, 2023
Nov 19, 2022
Nov 21, 2022
Mar 22, 2023
Mar 22, 2023
Mar 22, 2023
Jun 23, 2023
Jun 23, 2023
Jan 29, 2025
Jan 29, 2025
Jun 23, 2023
Nov 19, 2022

Repository files navigation

Torrust Index Application Interface

Test

A simple TypeScript/ES6 library that contains API calls used by the Torrust Index project.

Install

You can install this library using NPM:

npm i -S torrust-index-api-lib torrust-index-types-lib

Then import either the Rest or GraphQL (WIP) API library:

Rest

import {rest} from "torrust-index-api-lib";

GraphQL

import {graphql} from "torrust-index-api-lib";

Usage (Rest)

Torrent

Example of retrieving a single torrent using its torrent_id:

import {rest} from "torrust-index-api-lib";
import {Torrent} from "torrust-index-types-lib";

const API_BASE_URL = "http://localhost:3000";
let torrentId = 1;

rest.torrent.getTorrent(API_BASE_URL, torrentId)
    .then((torrent) => {
        // torrent has type Torrent
        console.log(torrent);
    })
    .catch((err) => {
        console.error(err);
    });

Usage (GraphQL)

The GraphQL API still needs to be developed.

About

A TypeScript library that contains API handlers for the Torrust Index project.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 96.2%
  • JavaScript 3.8%