node-minecraft-protocol/docs/FAQ.md
2020-07-06 01:34:41 +02:00

712 B

FAQ

This Frequently Asked Question document is meant to help people for the most common things.

How to hide errors ?

Use hideErrors: true in createClient options You may also choose to add these listeners :

client.on('error', () => {})
client.on('end', () => {})

How can I make a proxy with this ?