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

imperial-mod/proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)
})