J

mcpe-ping

Created Oct 19, 2025 by falkirks

Language:

JavaScript

Stars:

19

Forks:

3

README

NPM version Build Status Dependency Status

Pings an MCPE server for simple data.

This is a port of mc-ping for MCPE.

This library was written using code from the DirtServer project.

Install

$ npm install --save mcpe-ping

Usage

var mcpeping = require('mcpe-ping');

mcpeping('example.com', 19132, function(err, res) {
    if (err) {
        // Some kind of error
        console.error(err);
    } else {
        // Success!
        console.log(res);
    }
}, 3000);

License

MIT © Falkirks

Last updated: Oct 19, 2025

Publisher info

falkirks's avatar

falkirks

I write beautiful code...sometimes it even compiles. (profile picture by milosh)

@stripe
303
followers
112
following
139
repos

More MCP servers built with JavaScript

React

The library for web and native user interfaces.

By facebook 242.4K
Three.js

JavaScript 3D Library.

By mrdoob 110.5K
Axios

Promise based HTTP client for the browser and node.js

By axios 108.5K