bun-memory 1.1.32 → 1.1.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# bun-memory
|
|
2
2
|
|
|
3
|
-
Blazing fast, high-performance Windows process memory manipulation for Bun.
|
|
3
|
+
Blazing fast, high-performance Windows process memory manipulation for [Bun](https://bun.sh/).
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
7
|
-
`bun-memory` provides fast, allocation-conscious tools for reading and writing memory in external Windows processes. Designed for Bun and Windows 10/11, it exposes a single class, `Memory`, with a clear, type-safe API for all common memory operations.
|
|
7
|
+
`bun-memory` provides fast, allocation-conscious tools for reading and writing memory in external Windows processes. Designed for [Bun](https://bun.sh/) and Windows 10/11, it exposes a single class, `Memory`, with a clear, type-safe API for all common memory operations.
|
|
8
8
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
@@ -17,7 +17,7 @@ Blazing fast, high-performance Windows process memory manipulation for Bun.
|
|
|
17
17
|
|
|
18
18
|
## Requirements
|
|
19
19
|
|
|
20
|
-
- Bun runtime
|
|
20
|
+
- [Bun](https://bun.sh/) runtime
|
|
21
21
|
- Windows 10 or later
|
|
22
22
|
|
|
23
23
|
## Installation
|
|
@@ -52,6 +52,7 @@ cs2.close();
|
|
|
52
52
|
## API Highlights
|
|
53
53
|
|
|
54
54
|
- `follow(address, offsets)` — Follow a pointer chain
|
|
55
|
+
- `pattern(needle, address, length)` — Find a byte pattern in memory (supports wildcards)
|
|
55
56
|
- `read(address, scratch)` — Read memory into a scratch (no allocations)
|
|
56
57
|
- `write(address, scratch)` — Write a scratch to memory
|
|
57
58
|
- Module map: `memory.modules['client.dll']`
|