No description
  • JavaScript 99.6%
  • Shell 0.4%
Find a file
extremeheat b6d0ab3765
Make CI more reliable (#217)
* Use 2-attempt server start method in dump test

* Update startVanillaServer.js

replace download from curl to nodejs https

* fix syntax error

* corrections

* rm some logging

* fix
2022-06-09 14:46:05 -04:00
.github Fix small typo in helper-bot (#128) 2021-08-10 02:36:26 -04:00
docs Better handle ping timeout, update documentation (#218) 2022-06-09 13:45:58 -04:00
examples Implement Realm joining (#193) 2022-04-09 13:11:12 -04:00
src Better handle ping timeout, update documentation (#218) 2022-06-09 13:45:58 -04:00
test test/vanilla: temporary hack to allow 1.19 chunk tests to pass 2022-06-09 13:08:51 -04:00
tools Make CI more reliable (#217) 2022-06-09 14:46:05 -04:00
types 1.17 support (#99) 2021-06-09 17:26:44 -04:00
.gitignore Ignore unconnected packets, remove babel (#185) 2022-02-21 10:35:24 +01:00
.gitpod setup some CI and basics (#47) 2021-03-14 00:49:17 +01:00
.gitpod.DockerFile setup some CI and basics (#47) 2021-03-14 00:49:17 +01:00
.npmignore Ignore unconnected packets, remove babel (#185) 2022-02-21 10:35:24 +01:00
.npmrc setup some CI and basics (#47) 2021-03-14 00:49:17 +01:00
CONTRIBUTING.md Update docs (#165) 2021-12-26 15:53:49 +01:00
HISTORY.md Release 3.13.0 (#208) 2022-05-04 16:11:53 -04:00
index.d.ts Add 1.18.31 to types 2022-04-30 19:25:33 -04:00
index.js Implement Prismarine Auth (#131) 2021-08-16 13:06:19 +02:00
LICENSE initial commit 2016-02-13 13:09:13 -05:00
package.json Release 3.13.0 (#208) 2022-05-04 16:11:53 -04:00
README.md Release 3.12.0 (#199) 2022-04-21 14:04:10 -04:00

bedrock-protocol

NPM version Build Status Discord Try it on gitpod

Minecraft Bedrock Edition (aka MCPE) protocol library, supporting authentication and encryption. Help contribute.

Protocol doc

Features

  • Supports Minecraft Bedrock version 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30
  • Parse and serialize packets as JavaScript objects
  • Automatically respond to keep-alive packets
  • Proxy and mitm connections
  • Client
  • Server
    • Autheticate clients with Xbox Live
    • Ping status
  • Robust test coverage.
  • Easily extend with many other PrismarineJS projects, world providers, and more
  • Optimized for rapidly staying up to date with Minecraft protocol updates.

Want to contribute on something important for PrismarineJS ? go to https://github.com/PrismarineJS/mineflayer/wiki/Big-Prismarine-projects

Installation

npm install bedrock-protocol

Usage

Client example

Example to connect to a server in offline mode, and relay chat messages back:

const bedrock = require('bedrock-protocol')
const client = bedrock.createClient({
  host: 'localhost',   // optional
  port: 19132,         // optional, default 19132
  username: 'Notch',   // the username you want to join as, optional if online mode
  offline: true       // optional, default false. if true, do not login with Xbox Live. You will not be asked to sign-in if set to true.
})

client.on('text', (packet) => { // Listen for chat messages and echo them back.
  if (packet.source_name != client.options.username) {
    client.queue('text', {
      type: 'chat', needs_translation: false, source_name: client.username, xuid: '', platform_chat_id: '',
      message: `${packet.source_name} said: ${packet.message} on ${new Date().toLocaleString()}`
    })
  }
})

Client example joining a Realm

Example to connect to a Realm that the authenticating account is owner of or has been invited to:

const bedrock = require('bedrock-protocol')
const client = bedrock.createClient({
  realms: {
    pickRealm: (realms) => realms[0] // Function which recieves an array of joined/owned Realms and must return a single Realm. Can be async
  }
})

Server example

Can't connect locally on Windows? See the faq

const bedrock = require('bedrock-protocol')
const server = bedrock.createServer({
  host: '0.0.0.0',       // optional. host to bind as.
  port: 19132,           // optional
  version: '1.17.10',   // optional. The server version, latest if not specified. 
})

server.on('connect', client => {
  client.on('join', () => { // The client has joined the server.
    const d = new Date()  // Once client is in the server, send a colorful kick message
    client.disconnect(`Good ${d.getHours() < 12 ? '§emorning§r' : '§3afternoon§r'} :)\n\nMy time is ${d.toLocaleString()} !`)
  })
})

Ping example

const { ping } = require('bedrock-protocol')
ping({ host: 'play.cubecraft.net', port: 19132 }).then(res => {
  console.log(res)
})

Documentation

For documentation on the protocol, and packets/fields see the proto.yml and types.yml files.

See API documentation

See faq

Testing

npm test

Debugging

You can enable some protocol debugging output using DEBUG environment variable.

Through node.js, add process.env.DEBUG = 'minecraft-protocol' at the top of your script.

Contribute

Please read CONTRIBUTING.md and https://github.com/PrismarineJS/prismarine-contribute

History

See history