@vibecook/truffle-native 0.1.0 → 0.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/helpers.d.ts +12 -0
- package/helpers.js +79 -0
- package/index.d.ts +60 -12
- package/index.js +52 -52
- package/package.json +14 -19
- package/truffle.darwin-arm64.node +0 -0
package/helpers.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Resolve the sidecar binary path for the current platform.
|
|
3
|
+
* @returns Absolute path to the sidecar binary.
|
|
4
|
+
* @throws If the binary cannot be found.
|
|
5
|
+
*/
|
|
6
|
+
export declare function resolveSidecarPath(): string;
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Open a URL in the system's default browser.
|
|
10
|
+
* Works cross-platform (macOS, Linux, Windows).
|
|
11
|
+
*/
|
|
12
|
+
export declare function openUrl(url: string): void;
|
package/helpers.js
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
const { execSync } = require('node:child_process');
|
|
2
|
+
const path = require('node:path');
|
|
3
|
+
const fs = require('node:fs');
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Resolve the sidecar binary path for the current platform.
|
|
7
|
+
*
|
|
8
|
+
* Resolution order:
|
|
9
|
+
* 1. Platform-specific npm package (@vibecook/truffle-sidecar-{platform}-{arch})
|
|
10
|
+
* 2. Local workspace bin directories (for development)
|
|
11
|
+
*
|
|
12
|
+
* @returns {string} Absolute path to the sidecar binary.
|
|
13
|
+
* @throws {Error} If the binary cannot be found.
|
|
14
|
+
*/
|
|
15
|
+
function resolveSidecarPath() {
|
|
16
|
+
const key = `${process.platform}-${process.arch}`;
|
|
17
|
+
const ext = process.platform === 'win32' ? '.exe' : '';
|
|
18
|
+
const binName = `sidecar-slim${ext}`;
|
|
19
|
+
|
|
20
|
+
// 1. Try platform-specific npm package
|
|
21
|
+
const platformPackages = {
|
|
22
|
+
'darwin-arm64': '@vibecook/truffle-sidecar-darwin-arm64',
|
|
23
|
+
'darwin-x64': '@vibecook/truffle-sidecar-darwin-x64',
|
|
24
|
+
'linux-x64': '@vibecook/truffle-sidecar-linux-x64',
|
|
25
|
+
'linux-arm64': '@vibecook/truffle-sidecar-linux-arm64',
|
|
26
|
+
'win32-x64': '@vibecook/truffle-sidecar-win32-x64',
|
|
27
|
+
};
|
|
28
|
+
const pkg = platformPackages[key];
|
|
29
|
+
if (pkg) {
|
|
30
|
+
try {
|
|
31
|
+
const pkgJsonPath = require.resolve(`${pkg}/package.json`);
|
|
32
|
+
const binPath = path.join(path.dirname(pkgJsonPath), 'bin', binName);
|
|
33
|
+
if (fs.existsSync(binPath)) return binPath;
|
|
34
|
+
} catch {}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// 2. Try workspace locations (local dev)
|
|
38
|
+
// Walk up from this file's directory looking for packages/core/bin or packages/sidecar-slim/bin
|
|
39
|
+
let dir = __dirname;
|
|
40
|
+
for (let i = 0; i < 5; i++) {
|
|
41
|
+
const coreBin = path.join(dir, 'packages', 'core', 'bin', binName);
|
|
42
|
+
if (fs.existsSync(coreBin)) return coreBin;
|
|
43
|
+
const slimBin = path.join(dir, 'packages', 'sidecar-slim', 'bin', binName);
|
|
44
|
+
if (fs.existsSync(slimBin)) return slimBin;
|
|
45
|
+
const parent = path.dirname(dir);
|
|
46
|
+
if (parent === dir) break;
|
|
47
|
+
dir = parent;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const supported = Object.keys(platformPackages).join(', ');
|
|
51
|
+
throw new Error(
|
|
52
|
+
`Truffle sidecar binary not found for ${key}. ` +
|
|
53
|
+
`Supported platforms: ${supported}. ` +
|
|
54
|
+
`Install the platform package: npm install ${platformPackages[key] || '@vibecook/truffle-sidecar-<platform>'}`
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Open a URL in the system's default browser.
|
|
60
|
+
* Works cross-platform (macOS, Linux, Windows).
|
|
61
|
+
*
|
|
62
|
+
* @param {string} url - The URL to open.
|
|
63
|
+
*/
|
|
64
|
+
function openUrl(url) {
|
|
65
|
+
const platform = process.platform;
|
|
66
|
+
try {
|
|
67
|
+
if (platform === 'darwin') {
|
|
68
|
+
execSync(`open "${url}"`);
|
|
69
|
+
} else if (platform === 'win32') {
|
|
70
|
+
execSync(`start "" "${url}"`);
|
|
71
|
+
} else {
|
|
72
|
+
execSync(`xdg-open "${url}"`);
|
|
73
|
+
}
|
|
74
|
+
} catch {
|
|
75
|
+
// Silently fail — caller can handle errors via the auth event
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
module.exports = { resolveSidecarPath, openUrl };
|
package/index.d.ts
CHANGED
|
@@ -34,16 +34,15 @@ export declare class NapiFileTransferAdapter {
|
|
|
34
34
|
/**
|
|
35
35
|
* Subscribe to adapter events (offers, progress, completed, failed, cancelled).
|
|
36
36
|
*
|
|
37
|
-
* Only one subscriber allowed.
|
|
38
|
-
* handler is slow (broadcast channel). Critical events are never dropped.
|
|
37
|
+
* Only one subscriber allowed. Can be called before or after `start_manager_events`.
|
|
39
38
|
*/
|
|
40
39
|
onEvent(callback: (err: null | Error, event: NapiFileTransferEvent) => void): void
|
|
41
40
|
/**
|
|
42
41
|
* Subscribe to outgoing bus messages.
|
|
43
42
|
*
|
|
44
43
|
* The adapter generates outgoing messages (OFFER, ACCEPT, REJECT, CANCEL)
|
|
45
|
-
* that must be sent via the mesh message bus.
|
|
46
|
-
*
|
|
44
|
+
* that must be sent via the mesh message bus. Can be called before or after
|
|
45
|
+
* `start_manager_events`.
|
|
47
46
|
*/
|
|
48
47
|
onBusMessage(callback: (err: null | Error, message: NapiBusMessage) => void): void
|
|
49
48
|
/**
|
|
@@ -51,15 +50,25 @@ export declare class NapiFileTransferAdapter {
|
|
|
51
50
|
*
|
|
52
51
|
* The FileTransferManager emits events (progress, complete, error) that
|
|
53
52
|
* the adapter needs to process. Call this once after construction.
|
|
53
|
+
* Also spawns any pending event/bus callbacks registered before a Tokio
|
|
54
|
+
* runtime was available.
|
|
54
55
|
*/
|
|
55
|
-
startManagerEvents(): void
|
|
56
|
+
startManagerEvents(): Promise<void>
|
|
56
57
|
}
|
|
57
58
|
|
|
58
59
|
/**
|
|
59
|
-
* NapiMeshNode - Node.js wrapper for
|
|
60
|
+
* NapiMeshNode - Node.js wrapper for TruffleRuntime.
|
|
60
61
|
*
|
|
61
|
-
*
|
|
62
|
-
*
|
|
62
|
+
* Manages the full lifecycle: BridgeManager, GoShim sidecar, ConnectionManager,
|
|
63
|
+
* and MeshNode via the unified `TruffleRuntime`. The sidecar provides Tailscale
|
|
64
|
+
* connectivity; the bridge routes TCP streams; the connection manager upgrades
|
|
65
|
+
* them to WebSocket; and the mesh node handles device discovery, election,
|
|
66
|
+
* and messaging.
|
|
67
|
+
*
|
|
68
|
+
* ## RFC 008 Phase 3
|
|
69
|
+
* This wrapper now delegates to `TruffleRuntime` instead of manually wiring
|
|
70
|
+
* individual components. Events are delivered as `TruffleEvent` through the
|
|
71
|
+
* unified channel, converted to `NapiMeshEvent` for JS consumption.
|
|
63
72
|
*/
|
|
64
73
|
export declare class NapiMeshNode {
|
|
65
74
|
/**
|
|
@@ -68,9 +77,18 @@ export declare class NapiMeshNode {
|
|
|
68
77
|
* The `config` parameter matches the TypeScript `MeshNodeConfig` interface.
|
|
69
78
|
*/
|
|
70
79
|
constructor(config: NapiMeshNodeConfig)
|
|
71
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* Start the mesh node.
|
|
82
|
+
*
|
|
83
|
+
* If `sidecarPath` was provided, this spawns the Go sidecar process,
|
|
84
|
+
* creates a BridgeManager to route connections, and wires everything
|
|
85
|
+
* together for full Tailscale mesh networking.
|
|
86
|
+
*
|
|
87
|
+
* Events are delivered through the unified `TruffleEvent` channel,
|
|
88
|
+
* converted to `NapiMeshEvent` for JS consumption.
|
|
89
|
+
*/
|
|
72
90
|
start(): Promise<void>
|
|
73
|
-
/** Stop the mesh node. */
|
|
91
|
+
/** Stop the mesh node and sidecar. */
|
|
74
92
|
stop(): Promise<void>
|
|
75
93
|
/** Check if the node is running. */
|
|
76
94
|
isRunning(): Promise<boolean>
|
|
@@ -95,6 +113,18 @@ export declare class NapiMeshNode {
|
|
|
95
113
|
sendEnvelope(deviceId: string, namespace: string, msgType: string, payload: any): Promise<boolean>
|
|
96
114
|
/** Broadcast a mesh envelope to all connected devices. */
|
|
97
115
|
broadcastEnvelope(namespace: string, msgType: string, payload: any): Promise<void>
|
|
116
|
+
/** Get the current auth status ("unknown", "required", "authenticated"). */
|
|
117
|
+
authStatus(): Promise<string>
|
|
118
|
+
/** Get the current auth URL, if auth is required. */
|
|
119
|
+
authUrl(): Promise<string | null>
|
|
120
|
+
/**
|
|
121
|
+
* Get the protocol version supported by this node.
|
|
122
|
+
*
|
|
123
|
+
* Returns the maximum protocol version this node speaks (currently 3,
|
|
124
|
+
* the RFC 009 wire format). Use this to check compatibility with peers
|
|
125
|
+
* or to display version info in a UI.
|
|
126
|
+
*/
|
|
127
|
+
protocolVersion(): number
|
|
98
128
|
/** Get the message bus for namespace-based pub/sub. */
|
|
99
129
|
messageBus(): NapiMessageBus
|
|
100
130
|
/** Handle tailnet peers update from the sidecar. */
|
|
@@ -109,6 +139,10 @@ export declare class NapiMeshNode {
|
|
|
109
139
|
* - If the JS event queue is full, Rust waits rather than dropping events
|
|
110
140
|
*
|
|
111
141
|
* The callback receives NapiMeshEvent objects with event_type, device_id, and payload.
|
|
142
|
+
*
|
|
143
|
+
* Can be called multiple times to add multiple subscribers.
|
|
144
|
+
* Can be called before or after `start()`. If called before `start()`, the
|
|
145
|
+
* event loop is spawned when `start()` is called.
|
|
112
146
|
*/
|
|
113
147
|
onEvent(callback: (err: null | Error, event: NapiMeshEvent) => void): void
|
|
114
148
|
}
|
|
@@ -139,7 +173,12 @@ export declare class NapiStoreSyncAdapter {
|
|
|
139
173
|
* This constructor creates the adapter with an empty store list.
|
|
140
174
|
*/
|
|
141
175
|
constructor(config: NapiStoreSyncConfig)
|
|
142
|
-
/**
|
|
176
|
+
/**
|
|
177
|
+
* Start syncing.
|
|
178
|
+
*
|
|
179
|
+
* If `on_outgoing` was called before `start`, the outgoing loop is
|
|
180
|
+
* spawned here inside the NAPI Tokio runtime context.
|
|
181
|
+
*/
|
|
143
182
|
start(): Promise<void>
|
|
144
183
|
/** Stop syncing. */
|
|
145
184
|
stop(): Promise<void>
|
|
@@ -157,7 +196,7 @@ export declare class NapiStoreSyncAdapter {
|
|
|
157
196
|
* Subscribe to outgoing sync messages.
|
|
158
197
|
*
|
|
159
198
|
* The callback receives messages that should be broadcast to all devices
|
|
160
|
-
* via the mesh message bus.
|
|
199
|
+
* via the mesh message bus. Can be called before or after `start()`.
|
|
161
200
|
*/
|
|
162
201
|
onOutgoing(callback: (err: null | Error, message: NapiOutgoingSyncMessage) => void): void
|
|
163
202
|
}
|
|
@@ -278,6 +317,10 @@ export interface NapiMeshNodeConfig {
|
|
|
278
317
|
staticPath?: string
|
|
279
318
|
capabilities?: Array<string>
|
|
280
319
|
timing?: NapiMeshTimingConfig
|
|
320
|
+
/** If true, the node is ephemeral (cleaned up when offline). */
|
|
321
|
+
ephemeral?: boolean
|
|
322
|
+
/** ACL tags to advertise (e.g. ["tag:truffle"]). */
|
|
323
|
+
tags?: Array<string>
|
|
281
324
|
}
|
|
282
325
|
|
|
283
326
|
/** Timing configuration for the mesh. */
|
|
@@ -309,4 +352,9 @@ export interface NapiTailnetPeer {
|
|
|
309
352
|
tailscaleIps: Array<string>
|
|
310
353
|
online: boolean
|
|
311
354
|
os?: string
|
|
355
|
+
curAddr?: string
|
|
356
|
+
relay?: string
|
|
357
|
+
lastSeen?: string
|
|
358
|
+
keyExpiry?: string
|
|
359
|
+
expired?: boolean
|
|
312
360
|
}
|
package/index.js
CHANGED
|
@@ -77,8 +77,8 @@ function requireNative() {
|
|
|
77
77
|
try {
|
|
78
78
|
const binding = require('@vibecook/truffle-native-android-arm64')
|
|
79
79
|
const bindingPackageVersion = require('@vibecook/truffle-native-android-arm64/package.json').version
|
|
80
|
-
if (bindingPackageVersion !== '0.1.
|
|
81
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
80
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
81
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
82
82
|
}
|
|
83
83
|
return binding
|
|
84
84
|
} catch (e) {
|
|
@@ -93,8 +93,8 @@ function requireNative() {
|
|
|
93
93
|
try {
|
|
94
94
|
const binding = require('@vibecook/truffle-native-android-arm-eabi')
|
|
95
95
|
const bindingPackageVersion = require('@vibecook/truffle-native-android-arm-eabi/package.json').version
|
|
96
|
-
if (bindingPackageVersion !== '0.1.
|
|
97
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
96
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
97
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
98
98
|
}
|
|
99
99
|
return binding
|
|
100
100
|
} catch (e) {
|
|
@@ -114,8 +114,8 @@ function requireNative() {
|
|
|
114
114
|
try {
|
|
115
115
|
const binding = require('@vibecook/truffle-native-win32-x64-gnu')
|
|
116
116
|
const bindingPackageVersion = require('@vibecook/truffle-native-win32-x64-gnu/package.json').version
|
|
117
|
-
if (bindingPackageVersion !== '0.1.
|
|
118
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
117
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
118
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
119
119
|
}
|
|
120
120
|
return binding
|
|
121
121
|
} catch (e) {
|
|
@@ -130,8 +130,8 @@ function requireNative() {
|
|
|
130
130
|
try {
|
|
131
131
|
const binding = require('@vibecook/truffle-native-win32-x64-msvc')
|
|
132
132
|
const bindingPackageVersion = require('@vibecook/truffle-native-win32-x64-msvc/package.json').version
|
|
133
|
-
if (bindingPackageVersion !== '0.1.
|
|
134
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
133
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
134
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
135
135
|
}
|
|
136
136
|
return binding
|
|
137
137
|
} catch (e) {
|
|
@@ -147,8 +147,8 @@ function requireNative() {
|
|
|
147
147
|
try {
|
|
148
148
|
const binding = require('@vibecook/truffle-native-win32-ia32-msvc')
|
|
149
149
|
const bindingPackageVersion = require('@vibecook/truffle-native-win32-ia32-msvc/package.json').version
|
|
150
|
-
if (bindingPackageVersion !== '0.1.
|
|
151
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
150
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
151
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
152
152
|
}
|
|
153
153
|
return binding
|
|
154
154
|
} catch (e) {
|
|
@@ -163,8 +163,8 @@ function requireNative() {
|
|
|
163
163
|
try {
|
|
164
164
|
const binding = require('@vibecook/truffle-native-win32-arm64-msvc')
|
|
165
165
|
const bindingPackageVersion = require('@vibecook/truffle-native-win32-arm64-msvc/package.json').version
|
|
166
|
-
if (bindingPackageVersion !== '0.1.
|
|
167
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
166
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
167
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
168
168
|
}
|
|
169
169
|
return binding
|
|
170
170
|
} catch (e) {
|
|
@@ -182,8 +182,8 @@ function requireNative() {
|
|
|
182
182
|
try {
|
|
183
183
|
const binding = require('@vibecook/truffle-native-darwin-universal')
|
|
184
184
|
const bindingPackageVersion = require('@vibecook/truffle-native-darwin-universal/package.json').version
|
|
185
|
-
if (bindingPackageVersion !== '0.1.
|
|
186
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
185
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
186
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
187
187
|
}
|
|
188
188
|
return binding
|
|
189
189
|
} catch (e) {
|
|
@@ -198,8 +198,8 @@ function requireNative() {
|
|
|
198
198
|
try {
|
|
199
199
|
const binding = require('@vibecook/truffle-native-darwin-x64')
|
|
200
200
|
const bindingPackageVersion = require('@vibecook/truffle-native-darwin-x64/package.json').version
|
|
201
|
-
if (bindingPackageVersion !== '0.1.
|
|
202
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
201
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
202
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
203
203
|
}
|
|
204
204
|
return binding
|
|
205
205
|
} catch (e) {
|
|
@@ -214,8 +214,8 @@ function requireNative() {
|
|
|
214
214
|
try {
|
|
215
215
|
const binding = require('@vibecook/truffle-native-darwin-arm64')
|
|
216
216
|
const bindingPackageVersion = require('@vibecook/truffle-native-darwin-arm64/package.json').version
|
|
217
|
-
if (bindingPackageVersion !== '0.1.
|
|
218
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
217
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
218
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
219
219
|
}
|
|
220
220
|
return binding
|
|
221
221
|
} catch (e) {
|
|
@@ -234,8 +234,8 @@ function requireNative() {
|
|
|
234
234
|
try {
|
|
235
235
|
const binding = require('@vibecook/truffle-native-freebsd-x64')
|
|
236
236
|
const bindingPackageVersion = require('@vibecook/truffle-native-freebsd-x64/package.json').version
|
|
237
|
-
if (bindingPackageVersion !== '0.1.
|
|
238
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
237
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
238
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
239
239
|
}
|
|
240
240
|
return binding
|
|
241
241
|
} catch (e) {
|
|
@@ -250,8 +250,8 @@ function requireNative() {
|
|
|
250
250
|
try {
|
|
251
251
|
const binding = require('@vibecook/truffle-native-freebsd-arm64')
|
|
252
252
|
const bindingPackageVersion = require('@vibecook/truffle-native-freebsd-arm64/package.json').version
|
|
253
|
-
if (bindingPackageVersion !== '0.1.
|
|
254
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
253
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
254
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
255
255
|
}
|
|
256
256
|
return binding
|
|
257
257
|
} catch (e) {
|
|
@@ -271,8 +271,8 @@ function requireNative() {
|
|
|
271
271
|
try {
|
|
272
272
|
const binding = require('@vibecook/truffle-native-linux-x64-musl')
|
|
273
273
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-x64-musl/package.json').version
|
|
274
|
-
if (bindingPackageVersion !== '0.1.
|
|
275
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
274
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
275
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
276
276
|
}
|
|
277
277
|
return binding
|
|
278
278
|
} catch (e) {
|
|
@@ -287,8 +287,8 @@ function requireNative() {
|
|
|
287
287
|
try {
|
|
288
288
|
const binding = require('@vibecook/truffle-native-linux-x64-gnu')
|
|
289
289
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-x64-gnu/package.json').version
|
|
290
|
-
if (bindingPackageVersion !== '0.1.
|
|
291
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
290
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
291
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
292
292
|
}
|
|
293
293
|
return binding
|
|
294
294
|
} catch (e) {
|
|
@@ -305,8 +305,8 @@ function requireNative() {
|
|
|
305
305
|
try {
|
|
306
306
|
const binding = require('@vibecook/truffle-native-linux-arm64-musl')
|
|
307
307
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-arm64-musl/package.json').version
|
|
308
|
-
if (bindingPackageVersion !== '0.1.
|
|
309
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
308
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
309
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
310
310
|
}
|
|
311
311
|
return binding
|
|
312
312
|
} catch (e) {
|
|
@@ -321,8 +321,8 @@ function requireNative() {
|
|
|
321
321
|
try {
|
|
322
322
|
const binding = require('@vibecook/truffle-native-linux-arm64-gnu')
|
|
323
323
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-arm64-gnu/package.json').version
|
|
324
|
-
if (bindingPackageVersion !== '0.1.
|
|
325
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
324
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
325
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
326
326
|
}
|
|
327
327
|
return binding
|
|
328
328
|
} catch (e) {
|
|
@@ -339,8 +339,8 @@ function requireNative() {
|
|
|
339
339
|
try {
|
|
340
340
|
const binding = require('@vibecook/truffle-native-linux-arm-musleabihf')
|
|
341
341
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-arm-musleabihf/package.json').version
|
|
342
|
-
if (bindingPackageVersion !== '0.1.
|
|
343
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
342
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
343
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
344
344
|
}
|
|
345
345
|
return binding
|
|
346
346
|
} catch (e) {
|
|
@@ -355,8 +355,8 @@ function requireNative() {
|
|
|
355
355
|
try {
|
|
356
356
|
const binding = require('@vibecook/truffle-native-linux-arm-gnueabihf')
|
|
357
357
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-arm-gnueabihf/package.json').version
|
|
358
|
-
if (bindingPackageVersion !== '0.1.
|
|
359
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
358
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
359
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
360
360
|
}
|
|
361
361
|
return binding
|
|
362
362
|
} catch (e) {
|
|
@@ -373,8 +373,8 @@ function requireNative() {
|
|
|
373
373
|
try {
|
|
374
374
|
const binding = require('@vibecook/truffle-native-linux-loong64-musl')
|
|
375
375
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-loong64-musl/package.json').version
|
|
376
|
-
if (bindingPackageVersion !== '0.1.
|
|
377
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
376
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
377
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
378
378
|
}
|
|
379
379
|
return binding
|
|
380
380
|
} catch (e) {
|
|
@@ -389,8 +389,8 @@ function requireNative() {
|
|
|
389
389
|
try {
|
|
390
390
|
const binding = require('@vibecook/truffle-native-linux-loong64-gnu')
|
|
391
391
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-loong64-gnu/package.json').version
|
|
392
|
-
if (bindingPackageVersion !== '0.1.
|
|
393
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
392
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
393
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
394
394
|
}
|
|
395
395
|
return binding
|
|
396
396
|
} catch (e) {
|
|
@@ -407,8 +407,8 @@ function requireNative() {
|
|
|
407
407
|
try {
|
|
408
408
|
const binding = require('@vibecook/truffle-native-linux-riscv64-musl')
|
|
409
409
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-riscv64-musl/package.json').version
|
|
410
|
-
if (bindingPackageVersion !== '0.1.
|
|
411
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
410
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
411
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
412
412
|
}
|
|
413
413
|
return binding
|
|
414
414
|
} catch (e) {
|
|
@@ -423,8 +423,8 @@ function requireNative() {
|
|
|
423
423
|
try {
|
|
424
424
|
const binding = require('@vibecook/truffle-native-linux-riscv64-gnu')
|
|
425
425
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-riscv64-gnu/package.json').version
|
|
426
|
-
if (bindingPackageVersion !== '0.1.
|
|
427
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
426
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
427
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
428
428
|
}
|
|
429
429
|
return binding
|
|
430
430
|
} catch (e) {
|
|
@@ -440,8 +440,8 @@ function requireNative() {
|
|
|
440
440
|
try {
|
|
441
441
|
const binding = require('@vibecook/truffle-native-linux-ppc64-gnu')
|
|
442
442
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-ppc64-gnu/package.json').version
|
|
443
|
-
if (bindingPackageVersion !== '0.1.
|
|
444
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
443
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
444
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
445
445
|
}
|
|
446
446
|
return binding
|
|
447
447
|
} catch (e) {
|
|
@@ -456,8 +456,8 @@ function requireNative() {
|
|
|
456
456
|
try {
|
|
457
457
|
const binding = require('@vibecook/truffle-native-linux-s390x-gnu')
|
|
458
458
|
const bindingPackageVersion = require('@vibecook/truffle-native-linux-s390x-gnu/package.json').version
|
|
459
|
-
if (bindingPackageVersion !== '0.1.
|
|
460
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
459
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
460
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
461
461
|
}
|
|
462
462
|
return binding
|
|
463
463
|
} catch (e) {
|
|
@@ -476,8 +476,8 @@ function requireNative() {
|
|
|
476
476
|
try {
|
|
477
477
|
const binding = require('@vibecook/truffle-native-openharmony-arm64')
|
|
478
478
|
const bindingPackageVersion = require('@vibecook/truffle-native-openharmony-arm64/package.json').version
|
|
479
|
-
if (bindingPackageVersion !== '0.1.
|
|
480
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
479
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
480
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
481
481
|
}
|
|
482
482
|
return binding
|
|
483
483
|
} catch (e) {
|
|
@@ -492,8 +492,8 @@ function requireNative() {
|
|
|
492
492
|
try {
|
|
493
493
|
const binding = require('@vibecook/truffle-native-openharmony-x64')
|
|
494
494
|
const bindingPackageVersion = require('@vibecook/truffle-native-openharmony-x64/package.json').version
|
|
495
|
-
if (bindingPackageVersion !== '0.1.
|
|
496
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
495
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
496
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
497
497
|
}
|
|
498
498
|
return binding
|
|
499
499
|
} catch (e) {
|
|
@@ -508,8 +508,8 @@ function requireNative() {
|
|
|
508
508
|
try {
|
|
509
509
|
const binding = require('@vibecook/truffle-native-openharmony-arm')
|
|
510
510
|
const bindingPackageVersion = require('@vibecook/truffle-native-openharmony-arm/package.json').version
|
|
511
|
-
if (bindingPackageVersion !== '0.1.
|
|
512
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
511
|
+
if (bindingPackageVersion !== '0.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
512
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
513
513
|
}
|
|
514
514
|
return binding
|
|
515
515
|
} catch (e) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibecook/truffle-native",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.17",
|
|
4
4
|
"description": "Mesh networking for local-first apps, built on Tailscale (native addon)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -34,8 +34,20 @@
|
|
|
34
34
|
"files": [
|
|
35
35
|
"index.js",
|
|
36
36
|
"index.d.ts",
|
|
37
|
+
"helpers.js",
|
|
38
|
+
"helpers.d.ts",
|
|
37
39
|
"*.node"
|
|
38
40
|
],
|
|
41
|
+
"exports": {
|
|
42
|
+
".": {
|
|
43
|
+
"types": "./index.d.ts",
|
|
44
|
+
"default": "./index.js"
|
|
45
|
+
},
|
|
46
|
+
"./helpers": {
|
|
47
|
+
"types": "./helpers.d.ts",
|
|
48
|
+
"default": "./helpers.js"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
39
51
|
"napi": {
|
|
40
52
|
"binaryName": "truffle",
|
|
41
53
|
"targets": [
|
|
@@ -43,12 +55,7 @@
|
|
|
43
55
|
"aarch64-apple-darwin",
|
|
44
56
|
"x86_64-unknown-linux-gnu",
|
|
45
57
|
"aarch64-unknown-linux-gnu",
|
|
46
|
-
"x86_64-
|
|
47
|
-
"aarch64-unknown-linux-musl",
|
|
48
|
-
"aarch64-linux-android",
|
|
49
|
-
"x86_64-pc-windows-msvc",
|
|
50
|
-
"aarch64-pc-windows-msvc",
|
|
51
|
-
"armv7-unknown-linux-gnueabihf"
|
|
58
|
+
"x86_64-pc-windows-msvc"
|
|
52
59
|
]
|
|
53
60
|
},
|
|
54
61
|
"devDependencies": {
|
|
@@ -59,17 +66,5 @@
|
|
|
59
66
|
"build:debug": "napi build --platform",
|
|
60
67
|
"prepublishOnly": "napi prepublish -t npm",
|
|
61
68
|
"artifacts": "napi artifacts"
|
|
62
|
-
},
|
|
63
|
-
"optionalDependencies": {
|
|
64
|
-
"@vibecook/truffle-native-darwin-x64": "0.1.0",
|
|
65
|
-
"@vibecook/truffle-native-darwin-arm64": "0.1.0",
|
|
66
|
-
"@vibecook/truffle-native-linux-x64-gnu": "0.1.0",
|
|
67
|
-
"@vibecook/truffle-native-linux-arm64-gnu": "0.1.0",
|
|
68
|
-
"@vibecook/truffle-native-linux-x64-musl": "0.1.0",
|
|
69
|
-
"@vibecook/truffle-native-linux-arm64-musl": "0.1.0",
|
|
70
|
-
"@vibecook/truffle-native-android-arm64": "0.1.0",
|
|
71
|
-
"@vibecook/truffle-native-win32-x64-msvc": "0.1.0",
|
|
72
|
-
"@vibecook/truffle-native-win32-arm64-msvc": "0.1.0",
|
|
73
|
-
"@vibecook/truffle-native-linux-arm-gnueabihf": "0.1.0"
|
|
74
69
|
}
|
|
75
70
|
}
|
|
Binary file
|