1.1.6 • Published 5 years ago

xbdm.js v1.1.6

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

xbdm.js

Introduction

Communicate with your modified Xbox 360 via sockets. Handy for electron apps and JavaScript applications.

Code Samples

Here is an example of connecting to the target and running some commands.

xbdm.connect("192.168.1.7").then(resp => {
    xbdm.xNotify("Welcome from xbdm.js");  
    xbdm.getCPUKey().then(console.log).catch(console.log);
    xbdm.getConsoleID().then(console.log).catch(console.log);
    xbdm.getMemory(0x8210E58C, 4).then(console.log).catch(console.log);
    xbdm.setMemory(0x8210E58C, 60000000);
    xbdm.getMemory(0x8210E58C, 4).then(console.log).catch(console.log);
    xbdm.disconnect().then(console.log);
}).catch((err) => {
    console.log(err);
});

Installation

npm i xbdm.js
1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago