
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
bedrock-api
Advanced tools
A Node.js library to retrieve information about a Minecraft Bedrock Edition server using its IP address and port.
The bedrock-api Node.js library is a powerful tool for both developers and Minecraft enthusiasts. It provides a simple and efficient way to obtain detailed information about a Minecraft Bedrock Edition server using only its IP address and port. With this library, you can access vital server statistics, player data, and more, making it an essential component for any Minecraft server monitoring or management system.
Server Information: Retrieve essential details about the Minecraft Bedrock server, including its version, MOTD (Message of the Day), IP address, ID (ping, server), and server name.
Player Data: Obtain the number of online players and the maximum number of players that the server can accommodate, enabling you to monitor player activity in real-time.
Server Status: Quickly check if the server is online and responsive, helping you ensure the availability of your Minecraft world.
const API = require('bedrock-api');
const api = new API();
const ip = 'play.nethergames.org';
const port = 19132;
Install with npm
npm install bedrock-api
.ping(ip, port, callback, timeout){}
| Parameter | Type | Description |
|---|---|---|
ip | string | Required. Your server adress. |
port | number | Required. Your server port. |
callback | function | Required. Function(err, res){} |
timeout | number | Optional. Response ping (default: 5000). |
.isOnline(ip, port, callback){}
.getAckId(ip, port, callback){}
.getMaxOnline(ip, port, callback){}
.getOnline(ip, port, callback){}
.getCleanName(ip, port, callback){}
.getName(ip, port, callback){}
.getVersion(ip, port, callback){}
.getGame(ip, port, callback){}
.getPingId(ip, port, callback){}
.getServerId(ip, port, callback){}
.getIp(ip, port, callback){}
.getIpFamilly(ip, port, callback){}
| Parameter | Type | Description |
|---|---|---|
ip | string | Required. Your server adress. |
port | number | Required. Your server port. |
callback | function | Required. Function(error, result){} |
FAQs
A Node.js library to retrieve information about a Minecraft Bedrock Edition server using its IP address and port.
We found that bedrock-api demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.