node-minecraft-protocol/docs/FAQ.md

21 lines
712 B
Markdown
Raw Permalink Normal View History

## FAQ
This Frequently Asked Question document is meant to help people for the most common things.
### How to hide errors ?
2020-06-21 13:56:18 -04:00
Use `hideErrors: true` in createClient options
You may also choose to add these listeners :
```js
client.on('error', () => {})
client.on('end', () => {})
```
2020-07-05 18:45:03 -04:00
### How can I make a proxy with this ?
2020-07-05 19:34:41 -04:00
* Check out our WIP proxy lib https://github.com/PrismarineJS/prismarine-proxy
2020-07-05 18:45:03 -04:00
* See this example https://github.com/PrismarineJS/node-minecraft-protocol/tree/master/examples/proxy
* Read this issue https://github.com/PrismarineJS/node-minecraft-protocol/issues/712
2020-07-05 18:49:04 -04:00
* check out https://github.com/Heath123/pakkit
2020-07-05 18:45:03 -04:00
* Check out this app https://github.com/wvffle/minecraft-packet-debugger