Skip to content

Makes creating Minecraft launchers in JavaScript an easy task

License

Notifications You must be signed in to change notification settings

MinecraftJS/launcher

Repository files navigation

Launcher

GitHub Workflow Status GitHub npm (scoped)

This library makes creating Minecraft launchers in JavaScript very easy. It'll help you managing all the stuff Minecraft requires like downloading the game and the assets.

Documentation

Installation

Install the package:

$ npm install @minecraft-js/launcher

And then import it in your JavaScript/TypeScript file

const { mcFolder } = require('@minecraft-js/launcher'); // CommonJS

import { mcFolder } from '@minecraft-js/launcher'; // ES6

Downloading assets

await mcFolder.downloadAssets('1.16.5'); // You can put any version here