npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

curseforge-api

v1.3.0

Published

An easy to use library to help you consume the CurseForge Core API

Downloads

27

Readme

curseforge-api 🚀

This is a JavaScript module built around the new CurseForge for Studios API (also formerly known as "Eternal API" and "CurseForge Core API") following the deprecation of the older, unnofficial API. It is designed to be easy to use and has zero dependencies 🙌. More information about the CurseForge for Studios API is available here.

This module provides TypeScript typings.

This module uses fetch() under the hood to make requests. However, if you're using Node.js, keep in mind that fetch() was not added until v17.5.0, and is behind the --experimental-fetch flag until v18.0.0. For this reason, where fetch() is unavailable, the module can use a fetch polyfill such as node-fetch.

Table of Contents

  1. Documentation
  2. Installation
    1. Node.js
    2. Deno and Browser
  3. Usage
    1. Using a fetch() Polyfill
    2. Documentation
    3. Examples
      1. Search for a mod via slug
      2. Fetch a mod via project ID
      3. Fetch the latest Forge 1.18.2 file for Just Enough Items (JEI)
      4. Fetch a mod file and download URL
  4. Enums

Documentation

Documentation is available here and is automatically generated from the source with TypeDoc.

Installation

Import the package depending on what type of environment you're using it in.

Node.js

Install the package via npm:

npm install curseforge-api

and import it in your script:

import {CurseForgeClient} from 'curseforge-api';

Deno and Browser

Import modules directly via CDN (for example, esm.sh, Skypack, jsDelivr or unpkg):

// Recommended for Deno
import {CurseForgeClient} from 'https://esm.sh/curseforge-api';
// OR
import {CurseForgeClient} from 'https://cdn.skypack.dev/curseforge-api';
// OR
import {CurseForgeClient} from 'https://cdn.jsdelivr.net/npm/curseforge-api';
// OR
import {CurseForgeClient} from 'https://unpkg.com/curseforge-api'

Usage

Start by creating a client, which you will use to make most API queries:

const client = new CurseForgeClient('YOUR_API_KEY');

Using a fetch() Polyfill

If you're using Node.js < v17.5.0, you'll want to provide a fetch() polyfill such as node-fetch:

import fetch from 'node-fetch';

// Pass fetch to the client
const client = new CurseForgeClient('YOUR_API_KEY', {fetch});

You can also provide a different polyfill, for example, if you're running this in a browser environment and target older browsers that don't support fetch(). As seen above, simply pass the polyfilled fetch function to the client constructor via the options.

Documentation

All classes, functions, enums, and types are documented here.

Examples

Search for a mod via slug

import {CurseForgeGameEnum} from 'curseforge-api';

const modsResults = await client.searchMods(CurseForgeGameEnum.Minecraft, {slug: 'jei'});
const jei = modsResults.data[0];
console.log(jei.name); // => 'Just Enough Items (JEI)'
console.log(jei.id); // => 238222

Fetch a mod via project ID

const jei = await client.getMod(238222);
console.log(jei.name); // => 'Just Enough Items (JEI)'
console.log(jei.id); // => 238222

Fetch the latest Forge 1.18.2 file for Just Enough Items (JEI)

import {CurseForgeModLoaderType} from 'curseforge-api';

const files = await mod.getFiles(238222, {
	gameVersion: '1.18.2',
	modLoaderType: CurseForgeModLoaderType.Forge,
	pageSize: 1,
});
console.log(files.data[0].fileName); // => 'jei-1.18.2-9.7.1.232.jar'

Fetch a mod file and download URL

const file = await mod.getFile(3847103);
console.log(file.displayName); // => 'jei-1.18.2-9.7.0.209.jar'
console.log(await file.getDownloadURL()); // => 'https://edge.forgecdn.net/files/3847/103/jei-1.18.2-9.7.0.209.jar'

Enums

For convenience, the game IDs that were available at the time of publishing are available as an enum. You can use this wherever you need to provide a game ID.

There are also enums and typings available for all documented types on the CurseForge for Studios API.