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

adlauncher-core

v2.3.0

Published

Un módulo que permite la descarga y la ejecución de minecraft java con node.js

Downloads

351

Readme

ADLAUNCHER-CORE | MINECRAFT LAUNCHER WITH NODE JS

Módulo simple para descargar y ejecutar minecraft gratis. En desarrollo.

Este proyecto está desarrollado con fines educativos. No apoyamos a la piratería, compra el juego original lo más pronto posible para que tengas una mejor experiencia.

Esta nueva versión 2.1 contiene el soporte total de las versiones Forge a partir de la v1.8 y NeoForge. Actualmente estamos trabajando en el soporte para Fabric y Optifine. También se cambió a sistema CommonJS. (Habrán actualizaciones muy pronto).

Ejecutables de Java Necesarios

Los ejecutables de Java son totalmente obligatorios para evitar problemas en la ejecución del programa. Para evitar errores en el funcionamiento, especifica la ubicación de Java que vas a usar.

  • Versión 1.16.5 o inferiores - Java 8 x64
  • Versiones desde la 1.17 hasta la 1.20.4 - Java 17
  • Versión 1.20.5 o superiores - Java 21

Forma de uso

Instalación

npm i adlauncher-core

Descargar Versión

const { downloadMinecraft } = require('adlauncher-core');

downloadMinecraft({
  root: './minecraft', // RUTA DEL JUEGO
  version: '1.8.8', // VERSION A DESCARGAR
  type: 'release', // TIPO DE VERSION (release - snapshot)
});

Ejecutar Versión

const { launchMinecraft } = require('adlauncher-core');

launchMinecraft({
  user: {
    username: 'dani_adbg', // NOMBRE DE USUARIO,
  },
  version: '1.6.1', // VERSION DE JUEGO
  type: 'release', // TIPO DE VERSION
  gameDirectory: './minecraft', // RUTA DE JUEGO
  memory: {
    min: '2G', // MINIMO DE MEMORIA PARA USAR
    max: '6G', // MAXIMO DE MEMORIA PARA USAR
  },
  java: 'C:/Program Files/Java/jre1.8.0_431/bin/java.exe', // [OPCIONAL] POR DEFECTO USARÁ LA VERSION DEFAULT DE JAVA INSTALADA
  usersConfig: './users.json', // [OPCIONAL] POR DEFECTO BUSCARA EL ARCHIVO `usercache.json`
});

Ejecutar Versión Forge o NeoForge

Las únicas diferencias están en la versión y en el tipo de versión que se van a ejecutar.

const { launchMinecraft } = require('adlauncher-core');

launchMinecraft({
  user: {
    username: 'dani_adbg', // NOMBRE DE USUARIO,
  },
  version: '1.12.2-forge-14.23.5.2860', // VERSION DE JUEGO - Varia dependiendo de la instalación.
  type: 'forge', // O neoforge
  gameDirectory: './minecraft', // RUTA DE JUEGO
  memory: {
    min: '2G', // MINIMO DE MEMORIA PARA USAR
    max: '6G', // MAXIMO DE MEMORIA PARA USAR
  },
  java: 'C:/Program Files/Java/jre1.8.0_431/bin/java.exe', // [OPCIONAL] POR DEFECTO USARÁ LA VERSION DEFAULT DE JAVA INSTALADA
  usersConfig: './users.json', // [OPCIONAL] POR DEFECTO BUSCARA EL ARCHIVO `usercache.json`
});

Users Config

Este parámetro es totalmente opcional, dando la posibilidad de tener un archivo en el que se guarden los datos del usuario (username, uuid). Esto permite agregar funcionalidades al momento de crear un launcher completo.

./users.json

La estructura del archivo debe ser la siguiente:

[
  {
    name: 'dani_adbg', // username
    uuid: '1234-1234-1234' // uuid v4
  },
  {
    name: 'dani', // username
    uuid: '9876-3211-6540' // uuid v4
  }
  ...
]

Notas

  • Desde la versión 1.6.1 en adelante, todas las versiones son estables.

  • El paquete sigue en desarrollo, si encuentras algún error comunícalo en mi Servidor de Discord.


Support

Discord YouTube


Project developed by: dani_adbg