ORIService Windows ARM64
raw JSON → 0.0.0-pre-alpha.2 verified Fri May 01 auth: no javascript
Provides the Windows ARM64 binary for ORIService, a tool for running innerloop builds of TypeScript monorepos using esbuild. Version 0.0.0-pre-alpha.2 is an early pre-alpha release with no stable release date. This package is part of the ORIService ecosystem, enabling native execution on ARM64 Windows environments for faster performance. Key differentiators include tight integration with esbuild and focus on monorepo workflows.
Warnings
breaking Pre-alpha version with no stability guarantees. APIs and binary structure may change without notice. ↓
fix Pin to exact version and expect breaking changes.
gotcha This package is a platform-specific binary dependency. Do not install it directly; it should be installed as a dependency of ORIService. ↓
fix Install the main 'ori' package which will pull the correct platform-specific binary.
Install
npm install oriservice-windows-arm64 yarn add oriservice-windows-arm64 pnpm add oriservice-windows-arm64 Quickstart
const path = require('path');
const os = require('os');
// Check if this is Windows ARM64
if (os.platform() === 'win32' && os.arch() === 'arm64') {
console.log('ORIService Windows ARM64 binary:', path.join(process.cwd(), 'node_modules', 'oriservice-windows-arm64'));
} else {
console.log('This package is not meant for this platform/architecture.');
}