Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pocketnode/BedrockWS

PEWS inspired websocket server for Minecraft: Bedrock Edition
https://github.com/pocketnode/BedrockWS

Last synced: 3 months ago
JSON representation

PEWS inspired websocket server for Minecraft: Bedrock Edition

Awesome Lists containing this project

README

        

# BedrockWS

Starting up the first time:
```text
git clone https://github.com/eDroiid/BedrockWS.git
cd BedrockWS
npm i && node Server
```

Another way:
```text
npm i https://github.com/eDroiid/BedrockWS.git
node MyServer.js
```

`MyServer.js`:
```js
const MyServer = new (require("bedrockws"))();

MyServer.on("PlayerMessage", event => console.log(`${event.sender}: ${event.message}`));

MyServer.listen(80);
```

In Minecraft run `/connect localhost`. Send a message. Check your command line.