ori service (Windows AMD64)
raw JSON → 0.0.0-pre-alpha.2 verified Fri May 01 auth: no javascript
Distributes the prebuilt Windows AMD64 binary for the ori service, which runs inner-loop builds of TypeScript monorepos using esbuild. Version 0.0.0-pre-alpha.2 is a pre-release and not stable. This package is part of the ori toolchain from Microsoft, intended for use on Windows amd64 platforms only. The ori service is designed to accelerate development builds in monorepo setups by leveraging esbuild's speed. Currently in very early alpha stage with no stable release track.
Common errors
error Error: Cannot find module 'oriservice-windows-amd64' ↓
cause Attempting to import the package as a JavaScript module.
fix
This is a binary package, not a JS module. Use npx or execute the binary directly.
error zsh: command not found: oriservice-windows-amd64 ↓
cause Binary not in PATH after npm install.
fix
Use npx oriservice-windows-amd64 or add node_modules/.bin to PATH.
Warnings
breaking Pre-release software: API and behavior may change without notice. ↓
fix Pin to exact version and monitor release notes.
gotcha Platform-specific package: only works on Windows AMD64. Install on other platforms will result in missing binary. ↓
fix Use the correct platform package for your OS (e.g., oriservice-linux-amd64, oriservice-darwin-arm64).
gotcha Package is a binary distribution; no JS/TS imports are available. ↓
fix Use npx or direct binary execution instead of require/import.
Install
npm install oriservice-windows-amd64 yarn add oriservice-windows-amd64 pnpm add oriservice-windows-amd64 Quickstart
#!/usr/bin/env bash
# ori service is a platform binary package; no JavaScript imports.
# Download and run the service:
npx oriservice-windows-amd64@0.0.0-pre-alpha.2 &
# Wait for service to start, then run ori commands
ori build --service=http://localhost:3000