Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Latest commit

 

History

History
22 lines (14 loc) · 316 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 316 Bytes

Hypixel Proxy

Open source proxy for Hypixel

Usage

Install the package with

npm i hypixel-proxy -s

Example

const Proxy = require("hypixel-proxy")

const proxy = new Proxy(25566, "mojang")

proxy.startProxy()
proxy.on("player_join", (uuid, username) => {
	console.log(uuid, username)
})