@navinora/connector
v0.8.73
Published
Cross-platform launcher for Navinora Coding Workbench connector
Readme
Navinora Connector
Cross-platform launcher for the Navinora Coding Workbench local connector.
Install
npm install -g @navinora/connectorPair And Run
Copy the pairing command from Navinora system settings, then run:
navinora-connector login --server https://pivot.enclaws.com --pairing-code <code>
navinora-connector runThe main package is a thin launcher. It installs the matching native payload through platform-specific optional dependencies, so end users only need the one global install command above.
Platform Support
Published platform packages:
@navinora/connector-win32-x64@navinora/connector-darwin-x64@navinora/connector-darwin-arm64
Publish Checklist
For maintainers:
# Build and stage the native payload for the current platform package.
pwsh ./scripts/package-connector.ps1 -Profile release -PackNpm
# Validate the main package locally.
node ./packaging/npm/bin/navinora-connector.js --help
npm pack ./packaging/npm
# Publish platform packages first, then the main launcher package.
npm publish ./packaging/npm-platforms/win32-x64 --access public
npm publish ./packaging/npm-platforms/darwin-x64 --access public
npm publish ./packaging/npm-platforms/darwin-arm64 --access public
npm publish ./packaging/npm --access public