This library is a wrapper around the Modrinth API, a platform for Minecraft mods, modpacks, and other content. It is not an official package by Modrinth and not affiliated with Modrinth in any way.
Simply execute the following command in your commandline:
npm install typerinth
Import the package like this:
import { Modrinth } from 'typerinth';
const modrinth = new Modrinth();
You can change the options to tune typerinth to your liking:
import { Modrinth } from 'typerinth';
const modrinth = new Modrinth({
baseUrl: 'https://api.modrinth.com',
apiVersion: 'v2',
userAgent: 'AppName/Version',
cache: {
ttl: 600,
checkperiod: 120,
useCache: true,
},
});
This project is licensed under the MIT License - see the LICENSE file for details.