1.3.2 • Published 2 years ago

modrinth v1.3.2

Weekly downloads
25
License
Apache-2.0
Repository
github
Last release
2 years ago

Not currently maintained due to a dispute with the Modrinth Team and other related individuals.

If you're interested in maintaining this package, feel free to contact me on Discord. support inquries will be ignored.

Modrinth.js

JavaScript library for accessing the Modrinth API.

Discord Maintenance GitHub issues npm bundle size (scoped) NPM

Disclaimer: This package is in no way an official package, nor will you recieve support from the Modrinth Team in any official capacity for using this package. Any and all problems or support should be directed to Ruby, our issue tracker, or other contributors.

Resources

Website - Documentation - Source - Discord

Install

Available on NPM: Modrinth.js

Ruby's recommended package manager: pnpm: 📦🚀 Fast, disk space efficient package manager.

pnpm install modrinth or npm install modrinth.

Examples

import { Modrinth } from "modrinth";

const modrinth = new Modrinth({
    // GitHub access token, optional.
    authorization: "..." 
});

modrinth.user("rubybb"); // Promise<User>
modrinth.user("suMONnLn"); // Promise<User>
modrinth.users(["rubybb", "jellysquid3"]); // Promise<[User, User]>
modrinth.users(["rubybb", "TEZXhE2U"]); // Promise<[User, User]>

modrinth.mod("lambdynamiclights"); // Promise<Mod>
modrinth.mod("yBW8D80W"); // Promise<Mod>
modrinth.mods(["lambdynamiclights", "sodium"]); // Promise<[Mod, Mod]>

modrinth.version("hKXQNf9z"); // Promise<Version>
modrinth.versions(["YuZK7F05", "hKXQNf9z"]); // Promise<[Version, Version>]

modrinth.user("jellysquid3").then(async user => {
    const mods = await user.mods();
    console.log(mods);

    /* 
    * something like this. :) 
    * for the actual object returned, take a look at the documentation.
    * https://modrinth.js.org/classes/mod.html
    */
    [
        {
            id: "AANobbMI",
            slug: "sodium",
            title: "Sodium",
            status: "approved",
            downloads: 1490,
            ...
        },
        ...
    ]
});
1.3.2

2 years ago

1.3.1

2 years ago

1.3.0

3 years ago

1.2.3

3 years ago

1.2.0

3 years ago

1.0.2

3 years ago

1.1.0

3 years ago

1.0.1

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.0.0

3 years ago