Block a user
@oh-my-pi/pi-natives (14.5.4)
Published 2026-04-29 02:09:24 +00:00 by ndjoe
Installation
@oh-my-pi:registry=https://git.tpk.fun/api/packages/ndjoe/npm/npm install @oh-my-pi/pi-natives@14.5.4"@oh-my-pi/pi-natives": "14.5.4"About this package
@oh-my-pi/pi-natives
Native Rust functionality via N-API.
What's Inside
- Grep: Regex-based search powered by ripgrep's engine with native file walking and matching
- Find: Glob-based file/directory discovery with gitignore support (pure TypeScript via
globPaths) - Image: Image processing via photon-rs (resize, format conversion) exposed through N-API
Usage
import { grep, find, PhotonImage, SamplingFilter, ImageFormat } from "@oh-my-pi/pi-natives";
// Grep for a pattern
const results = await grep({
pattern: "TODO",
path: "/path/to/project",
glob: "*.ts",
context: 2,
});
// Find files
const files = await find({
pattern: "*.rs",
path: "/path/to/project",
fileType: "file",
});
// Image processing
const image = await PhotonImage.parse(bytes);
const resized = await image.resize(800, 600, SamplingFilter.Lanczos3);
const pngBytes = await resized.encode(ImageFormat.PNG, 100);
Building
# Build native addon from workspace root (requires Rust)
bun run build
# Type check
bun run check
Architecture
crates/pi-natives/ # Rust source (workspace member)
src/lib.rs # N-API exports
src/image.rs # Image processing (photon-rs)
Cargo.toml # Rust dependencies
native/ # Native addon binaries
pi_natives.<platform>-<arch>-modern.node # x64 modern ISA (AVX2)
pi_natives.<platform>-<arch>-baseline.node # x64 baseline ISA
pi_natives.<platform>-<arch>.node # non-x64 build artifact
src/ # TypeScript wrappers
native.ts # Native addon loader
index.ts # Public API
Dependencies
Development Dependencies
| ID | Version |
|---|---|
| @napi-rs/cli | catalog: |
| @types/bun | catalog: |
Keywords
napi
rust
native
grep
text-processing
clipboard
image
pty
shell
syntax-highlighting