JSPM

  • Created
  • Published
  • Downloads 128
  • Score
    100M100P100Q71830F
  • License GPL-3.0-only

Minecraft modpack testing environment CLI

Package Exports

  • @jaronline/blockenv
  • @jaronline/blockenv/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@jaronline/blockenv) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

BlockEnv logo

BlockEnv

Minecraft Java testing environment for modpacks.

GitHub npm

About

BlockEnv is an environment manager for testing Minecraft modpacks. It locally installs and runs Minecraft clients and servers.

Features

  • Launching a (modded) Minecraft server locally.
  • Launcing a (modded) Minecraft client that can join the server.
  • Automatic installing of the (modded) Minecraft server.
  • Automatic installing of the (modded) Minecraft client.
  • Cleaning of all environments.

Note: to join the launched server as a client, you will first need to put the server into offline-mode. See Server Configuration for more information.

Installation

Requirements

  • NodeJS
  • Node package manager (npm, yarn or pnpm)
  • Java

Command

To install BlockEnv, run the command below with your package manager of choice.

NPM

npm install @jaronline/blockenv

Yarn

yarn add @jaronline/blockenv

PNPM

pnpm add @jaronline/blockenv

Server Configuration

Offline-mode

To put the server in offline-mode, so that clients created by BlockEnv can join the server, you will need to set online-mode to false in server.properties.

# ...
online-mode=false
# ...