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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. 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']`
package/package.json CHANGED
@@ -22,7 +22,7 @@
22
22
  "url": "git://github.com/obscuritysrl/bun-memory.git"
23
23
  },
24
24
  "type": "module",
25
- "version": "1.1.32",
25
+ "version": "1.1.34",
26
26
  "main": "./index.ts",
27
27
  "keywords": [
28
28
  "bun",