1.3.3 • Published 1 year ago

nodeps4debug v1.3.3

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

NodePS4debug

A easy to use, fully async wrapper for PS4debug written in JavaScript.

Installation

Use the package manager npm to install NodePS4debug.

npm install nodeps4debug

Usage

const { connect, notify, disconnect, reboot, writeMemory, readMemory } = require("nodeps4debug");

(async() => {
  await connect('192.168.137.166') // Returns true or an error code.
  const notifyResponse = await notify('Hello');
  console.log(notifyResponse); // Returns a Buffer
  console.log(disconnect()) // Returns a boolean
  console.log(await getProcessList()) // Returns an Object
  console.log(await writeMemory(90, "0x5E394E1", Buffer.from("31C990", 'hex')))
  console.log(await readMemory(90, "0x5E394E1", Buffer.from("31C990", 'hex')))
  console.log(reboot())
})().catch(console.error);

Contributors

  • Jinx - Main package developer.
  • avieah - Main package developer.
  • DeathRGH - Contributing addresses and helping port code.

Helpful links

1.3.3

1 year ago

1.3.2

1 year ago

1.3.1

1 year ago

1.2.1

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago