@nghyane/pi-natives
v12.19.0
Published
Native Rust bindings for grep, clipboard, image processing, syntax highlighting, PTY, and shell operations via N-API
Downloads
94
Maintainers
Readme
@nghyane/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 "@nghyane/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:native
# Type check
bun run checkArchitecture
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