
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
This is a tool to connect with MinecraftBE via websocket easier.
日本語版はこちら: README_ja.md
Support server(Japanese community): https://discord.gg/XGR8FcCeFc
We are waiting for your contribution and bug reports!
Requires more than NodeJS v16
Install with clone
After cloning this repository, run
npm i
and install the dependencies.
We can run sample script with:
node test.js
Install as npm package
Run this and install!
npm i socket-be
If you use this inside same device, allow the loopback connection.
CheckNetIsolation.exe LoopbackExempt -a -n="Microsoft.MinecraftUWP_8wekyb3d8bbwe"
Also turn off "Encrypted websocket connection" in Minecraft settings
We use /wsserver or /connect command to connect with mc
EX: /wsserver <IP Address>:<PORT>
Try checking firewall setting if fails to connect
const { Server } = require('socket-be');
const server = new Server({
port: 8000,
timezone: 'Asia/Tokyo',
});
server.events.on('serverOpen', () => {
console.log('open!');
});
server.events.on('playerChat', async (event) => {
if (event.sender === 'External') return; // prevents spam loop
server.logger.info(`<${event.sender}> ${event.message}`);
if (event.message === 'ping') {
await event.world.sendMessage('Pong!');
}
});
https://github.com/tutinoko2048/SocketBE/wiki
MIT License!!
FAQs
This is a tool to connect with MinecraftBE via websocket easier.
The npm package socket-be receives a total of 32 weekly downloads. As such, socket-be popularity was classified as not popular.
We found that socket-be demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.