New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@teamif/minecraft-client

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@teamif/minecraft-client

[![NPM](https://nodei.co/npm/@teamif/minecraft-client.png?compact=true)](https://nodei.co/npm/@teamif/minecraft-client/)

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
5
Maintainers
1
Weekly downloads
 
Created
Source

Minecraft Client

NPM

Usage

import {MinecraftClient} from '@teamif/minecraft-client';

//Vanilla Minecraft Client
let client: MinecraftClient = await MinecraftClient.getMinecraftClient("1.15", {
    gameDir: '/home/username/.minecraft'
});

//Forge Minecraft Client with promoted Version
let client: MinecraftClient = await MinecraftClient.getForgeClient("1.15", "recommended", {
    gameDir: '/home/username/.minecraft'
});

//Forge Minecraft Client with custom Version
let client: MinecraftClient = await MinecraftClient.getForgeClient("1.15", "14.23.4.2709", {
    gameDir: '/home/username/.minecraft'
});

import {InstallationProgress} from '@teamif/minecraft-client';

//Vanilla Minecraft Client with Progress Callback
let client: MinecraftClient = await MinecraftClient.getMinecraftClient("1.15", {
    gameDir: '/home/username/.minecraft'
}, InstallationProgress.callback(currentStep => {
    //Step Callback
}, progress => {
    //Progress Callback (in %)
}));

Valid Forge version types:

  • latest
  • recommended

Authentication

import {Authentication} from '@teamif/minecraft-client';

//This is required to download all the Libraries and assets
await client.checkInstallation();

//Offline Authentication
client.launch(Authentication.offline("Username"));

//Username/Password Authentication
client.launch(await Authentication.login("Username (Email)", "Password"));

//Token Authentication
client.launch(await Authentication.refresh("accessToken"));

Mods

import {CurseForgeMod, CustomForgeMod, ForgeMod} from '@teamif/minecraft-client';

//List Mods
let mods: ForgeMod[] = [
    new CurseForgeMod("Iron Chests", 228756, 2595146),
    new CustomForgeMod("DynmapBlockScan", "http://www.dynmap.us/builds/DynmapBlockScan/DynmapBlockScan-3.0-alpha-1-forge-1.12.2.jar")
];

//Install Mods
client.checkMods(mods);

Keywords

minecraft

FAQs

Package last updated on 26 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts