1.0.0 • Published 2 years ago

@minecraft-js/launcher v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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