memorykit
TypeScript icon, indicating that this package has built-in type declarations

0.1.0-alpha3 • Public • Published

memorykit

Test

Documentation

A cross-platform JavaScript native library for wrangling virtual memory

Example

const memoryKit = require('memorykit');

// List all processes
memoryKit.getProcesses();

// Select a processes by PID
const process = new memoryKit.Process(1234);

// Read INT at process base addr
process.readInt(process.baseAddr);

// Remember to release the process handle
process.release();

Install

npm i -g node-gyp prebuildify # For compiling
npm i memorykit

Supported System

  • Windows
  • Linux
  • MacOS*

*Due to operating system policy, wrangling memory of a process that uses hardened runtime is not supported and you must run your code as root.

Readme

Keywords

Package Sidebar

Install

npm i memorykit

Weekly Downloads

0

Version

0.1.0-alpha3

License

MIT

Unpacked Size

162 kB

Total Files

22

Last publish

Collaborators

  • wtongze