Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@mu-online-js/mu-packet-manager
Advanced tools
It allows you to define packet structures in a single place and easily convert between buffer and object representations of these structures.
mu-online-js packet manager is a library that provides a simple way to define and manage packet structures used in the popular MMORPG game Mu Online. It allows you to define packet structures in a single place and easily convert between buffer and object representations of these structures. The library is designed to be used in any Mu Online server application that runs on node.js.
npm install @mu-online-js/mu-packet-manager
or
yarn add @mu-online-js/mu-packet-manager
First, you need to require the library in your code:
const packetManager = require('@mu-online-js/mu-packet-manager');
You can define your packet structure using an object and convert it to a buffer like this:
const messageStruct = {
header: {
type: 0xC2,
size: 'auto',
headCode: 0xF4,
subCode: 0x06,
},
serverCount: 1,
serverLoadInfo: [{
serverId: 0,
loadPercentage: 20
}]
}
const message = new packetManager()
.useStruct(structs.CSServerListResponse)
.toBuffer(messageStruct);
You can also convert a buffer to an object like this:
const data = Buffer;/* a buffer received from the client/server */
const messageObj = new packetManager()
.fromBuffer(data)
.useStruct(structs.CSServerListResponse)
.toObject();
Contributions are welcome! If you find a bug or have a feature request, please open an issue. If you want to contribute code, please open a pull request.
mu-online-js packet manager is licensed under the MIT License.
FAQs
It allows you to define packet structures in a single place and easily convert between buffer and object representations of these structures.
The npm package @mu-online-js/mu-packet-manager receives a total of 22 weekly downloads. As such, @mu-online-js/mu-packet-manager popularity was classified as not popular.
We found that @mu-online-js/mu-packet-manager 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.