Skip to content

Harvle/Noderinth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

‼️ THIS PROJECT IS A WORK IN PROGRESS! ‼️

There is only typings support currently, API access will be coming in future updates.

Noderinth

An unofficial REST API wrapper, complete with an optional structure-based wrapper for easy interaction with the Modrinth API.

Features:

  • 100% API coverage
  • Full typings supported
  • Structure-based
  • Support for requests only (no structures, just the parsed responses directly from the API).

Note: Currently supporting Version 2 as a base, however some Version 3 routes are also being accessed (adding support for collections).

Quick Installation Guide

npm install noderinth

REST-Only

Typescript / Import

import { RESTModrinth } from "noderinth";

let modrinth = new RESTModrinth();
let result = await modrinth.projects.get("fabric-api");
console.log(result.name); // Fabric API

Node.js / Require

const { RESTModrinth } = require("noderinth");

let modrinth = new RESTModrinth();
let result = await modrinth.projects.get("fabric-api");
console.log(result.name); // Fabric API

Structured

Typescript / Import

import { Modrinth } from "noderinth";

let modrinth = new Modrinth();
let result = await modrinth.projects.get("fabric-api");
console.log(result.name); // Fabric API

Node.js / Require

const { Modrinth } = require("noderinth");

let modrinth = new Modrinth();
let result = await modrinth.projects.get("fabric-api");
console.log(result.name); // Fabric API