hostdb 0.20.0 → 0.21.0
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/README.md +1 -0
- package/bin/cli.js +3 -1
- package/cli/bin.ts +117 -60
- package/databases.json +112 -43
- package/package.json +2 -1
- package/releases.json +34 -0
package/README.md
CHANGED
|
@@ -139,6 +139,7 @@ Auto-generated manifest updated after each GitHub Release. Structure:
|
|
|
139
139
|
| ClickHouse | Analytical | Completed | 25.12.3.21 | Official binaries (no Windows) |
|
|
140
140
|
| Qdrant | Vector | Completed | 1.16.3 | Official binaries |
|
|
141
141
|
| Meilisearch | Search | In Progress | 1.33.1 | Official binaries |
|
|
142
|
+
| InfluxDB | Time-series | In Progress | 3.8.0 | Official + source build (darwin-x64) |
|
|
142
143
|
| TypeDB | Graph | In Progress | 3.8.0 | Official binaries (Cloudsmith) |
|
|
143
144
|
|
|
144
145
|
See `pnpm dbs` for the full list.
|
package/bin/cli.js
CHANGED
|
@@ -64,7 +64,9 @@ child.on('exit', (code, signal) => {
|
|
|
64
64
|
|
|
65
65
|
// Exit with same code or signal-based exit code
|
|
66
66
|
if (signal) {
|
|
67
|
-
process.exit(
|
|
67
|
+
process.exit(
|
|
68
|
+
128 + (signal === 'SIGINT' ? 2 : signal === 'SIGTERM' ? 15 : 1),
|
|
69
|
+
)
|
|
68
70
|
}
|
|
69
71
|
process.exit(code ?? 0)
|
|
70
72
|
})
|
package/cli/bin.ts
CHANGED
|
@@ -33,10 +33,10 @@ const PLATFORM_ALIASES: Record<string, Platform[]> = {
|
|
|
33
33
|
// macOS specific
|
|
34
34
|
'mac-arm': ['darwin-arm64'],
|
|
35
35
|
'mac-intel': ['darwin-x64'],
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
m1: ['darwin-arm64'],
|
|
37
|
+
m2: ['darwin-arm64'],
|
|
38
|
+
m3: ['darwin-arm64'],
|
|
39
|
+
m4: ['darwin-arm64'],
|
|
40
40
|
// Windows
|
|
41
41
|
win: ['win32-x64'],
|
|
42
42
|
windows: ['win32-x64'],
|
|
@@ -109,7 +109,9 @@ function resolveTargetPlatform(
|
|
|
109
109
|
const target = platforms[0]
|
|
110
110
|
if (!availablePlatforms[target]) {
|
|
111
111
|
console.error(`Error: Platform '${platformInput}' not found`)
|
|
112
|
-
console.error(
|
|
112
|
+
console.error(
|
|
113
|
+
`\nAvailable: ${Object.keys(availablePlatforms).join(', ')}`,
|
|
114
|
+
)
|
|
113
115
|
process.exit(1)
|
|
114
116
|
}
|
|
115
117
|
return target
|
|
@@ -120,7 +122,9 @@ function resolveTargetPlatform(
|
|
|
120
122
|
const target = platforms.find((p) => availablePlatforms[p])
|
|
121
123
|
if (!target) {
|
|
122
124
|
console.error(`Error: No matching platform for '${platformInput}'`)
|
|
123
|
-
console.error(
|
|
125
|
+
console.error(
|
|
126
|
+
`\nAvailable: ${Object.keys(availablePlatforms).join(', ')}`,
|
|
127
|
+
)
|
|
124
128
|
process.exit(1)
|
|
125
129
|
}
|
|
126
130
|
return target
|
|
@@ -210,7 +214,9 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
210
214
|
dbFilter = resolved
|
|
211
215
|
} else if (resolved) {
|
|
212
216
|
console.error(`Error: Database '${filter}' not found`)
|
|
213
|
-
console.error(
|
|
217
|
+
console.error(
|
|
218
|
+
`\nAvailable: ${Object.keys(releases.databases).join(', ')}`,
|
|
219
|
+
)
|
|
214
220
|
process.exit(1)
|
|
215
221
|
}
|
|
216
222
|
}
|
|
@@ -218,23 +224,27 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
218
224
|
// Determine what to show based on filters
|
|
219
225
|
if (!dbFilter && !versionFilter && !platformFilter) {
|
|
220
226
|
// No filters: show all databases
|
|
221
|
-
const result = Object.keys(releases.databases)
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
227
|
+
const result = Object.keys(releases.databases)
|
|
228
|
+
.sort()
|
|
229
|
+
.map((db) => {
|
|
230
|
+
const versions = Object.keys(releases.databases[db])
|
|
231
|
+
const info = databases.databases[db]
|
|
232
|
+
return {
|
|
233
|
+
database: db,
|
|
234
|
+
displayName: info?.displayName || db,
|
|
235
|
+
type: info?.type || '',
|
|
236
|
+
versions: versions.length,
|
|
237
|
+
}
|
|
238
|
+
})
|
|
231
239
|
|
|
232
240
|
if (jsonOutput) {
|
|
233
241
|
console.log(JSON.stringify(result, null, 2))
|
|
234
242
|
} else {
|
|
235
243
|
console.log('Available databases:\n')
|
|
236
244
|
for (const r of result) {
|
|
237
|
-
console.log(
|
|
245
|
+
console.log(
|
|
246
|
+
` ${r.database.padEnd(15)} ${r.displayName.padEnd(15)} ${r.type.padEnd(20)} (${r.versions} versions)`,
|
|
247
|
+
)
|
|
238
248
|
}
|
|
239
249
|
}
|
|
240
250
|
return
|
|
@@ -267,9 +277,13 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
267
277
|
})
|
|
268
278
|
|
|
269
279
|
if (jsonOutput) {
|
|
270
|
-
console.log(
|
|
280
|
+
console.log(
|
|
281
|
+
JSON.stringify({ database: dbFilter, versions: result }, null, 2),
|
|
282
|
+
)
|
|
271
283
|
} else {
|
|
272
|
-
const platformLabel = platformFilter
|
|
284
|
+
const platformLabel = platformFilter
|
|
285
|
+
? ` (${platformFilter.join(', ')})`
|
|
286
|
+
: ''
|
|
273
287
|
console.log(`Versions for ${dbFilter}${platformLabel}:\n`)
|
|
274
288
|
for (const r of result) {
|
|
275
289
|
console.log(` ${r.version.padEnd(15)} (${r.platforms.join(', ')})`)
|
|
@@ -282,31 +296,43 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
282
296
|
// Database and version: show platforms
|
|
283
297
|
const dbReleases = releases.databases[dbFilter]
|
|
284
298
|
if (!dbReleases[versionFilter]) {
|
|
285
|
-
console.error(
|
|
286
|
-
|
|
299
|
+
console.error(
|
|
300
|
+
`Error: Version '${versionFilter}' not found for ${dbFilter}`,
|
|
301
|
+
)
|
|
302
|
+
console.error(
|
|
303
|
+
`\nAvailable: ${sortVersionsDesc(Object.keys(dbReleases)).join(', ')}`,
|
|
304
|
+
)
|
|
287
305
|
process.exit(1)
|
|
288
306
|
}
|
|
289
307
|
|
|
290
308
|
const release = dbReleases[versionFilter]
|
|
291
|
-
const result = (Object.keys(release.platforms) as Platform[])
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
309
|
+
const result = (Object.keys(release.platforms) as Platform[])
|
|
310
|
+
.sort()
|
|
311
|
+
.map((p) => {
|
|
312
|
+
const asset = release.platforms[p]!
|
|
313
|
+
return {
|
|
314
|
+
platform: p,
|
|
315
|
+
url: asset.url,
|
|
316
|
+
sha256: asset.sha256,
|
|
317
|
+
size: asset.size,
|
|
318
|
+
sizeMB: (asset.size / 1024 / 1024).toFixed(1),
|
|
319
|
+
}
|
|
320
|
+
})
|
|
301
321
|
|
|
302
322
|
if (jsonOutput) {
|
|
303
|
-
console.log(
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
323
|
+
console.log(
|
|
324
|
+
JSON.stringify(
|
|
325
|
+
{
|
|
326
|
+
database: dbFilter,
|
|
327
|
+
version: versionFilter,
|
|
328
|
+
releaseTag: release.releaseTag,
|
|
329
|
+
releasedAt: release.releasedAt,
|
|
330
|
+
platforms: result,
|
|
331
|
+
},
|
|
332
|
+
null,
|
|
333
|
+
2,
|
|
334
|
+
),
|
|
335
|
+
)
|
|
310
336
|
} else {
|
|
311
337
|
console.log(`Platforms for ${dbFilter} ${versionFilter}:\n`)
|
|
312
338
|
for (const r of result) {
|
|
@@ -320,8 +346,12 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
320
346
|
// All three: show specific assets
|
|
321
347
|
const dbReleases = releases.databases[dbFilter]
|
|
322
348
|
if (!dbReleases[versionFilter]) {
|
|
323
|
-
console.error(
|
|
324
|
-
|
|
349
|
+
console.error(
|
|
350
|
+
`Error: Version '${versionFilter}' not found for ${dbFilter}`,
|
|
351
|
+
)
|
|
352
|
+
console.error(
|
|
353
|
+
`\nAvailable: ${sortVersionsDesc(Object.keys(dbReleases)).join(', ')}`,
|
|
354
|
+
)
|
|
325
355
|
process.exit(1)
|
|
326
356
|
}
|
|
327
357
|
|
|
@@ -329,7 +359,9 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
329
359
|
const matchingPlatforms = platformFilter.filter((p) => release.platforms[p])
|
|
330
360
|
|
|
331
361
|
if (matchingPlatforms.length === 0) {
|
|
332
|
-
console.error(
|
|
362
|
+
console.error(
|
|
363
|
+
`Error: No matching platforms for ${dbFilter} ${versionFilter}`,
|
|
364
|
+
)
|
|
333
365
|
console.error(`\nAvailable: ${Object.keys(release.platforms).join(', ')}`)
|
|
334
366
|
console.error(`Requested: ${platformFilter.join(', ')}`)
|
|
335
367
|
process.exit(1)
|
|
@@ -350,7 +382,9 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
350
382
|
})
|
|
351
383
|
|
|
352
384
|
if (jsonOutput) {
|
|
353
|
-
console.log(
|
|
385
|
+
console.log(
|
|
386
|
+
JSON.stringify(result.length === 1 ? result[0] : result, null, 2),
|
|
387
|
+
)
|
|
354
388
|
} else {
|
|
355
389
|
for (const r of result) {
|
|
356
390
|
const sizeMB = (r.size / 1024 / 1024).toFixed(1)
|
|
@@ -366,13 +400,19 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
366
400
|
|
|
367
401
|
if (!dbFilter && platformFilter) {
|
|
368
402
|
// Platform only: show all databases/versions for that platform
|
|
369
|
-
const result: Array<{
|
|
403
|
+
const result: Array<{
|
|
404
|
+
database: string
|
|
405
|
+
version: string
|
|
406
|
+
platforms: string[]
|
|
407
|
+
}> = []
|
|
370
408
|
|
|
371
409
|
for (const db of Object.keys(releases.databases).sort()) {
|
|
372
410
|
const dbReleases = releases.databases[db]
|
|
373
411
|
for (const version of sortVersionsDesc(Object.keys(dbReleases))) {
|
|
374
412
|
const release = dbReleases[version]
|
|
375
|
-
const matchingPlatforms = platformFilter.filter(
|
|
413
|
+
const matchingPlatforms = platformFilter.filter(
|
|
414
|
+
(p) => release.platforms[p],
|
|
415
|
+
)
|
|
376
416
|
if (matchingPlatforms.length > 0) {
|
|
377
417
|
result.push({
|
|
378
418
|
database: db,
|
|
@@ -411,13 +451,17 @@ function cmdUrl(database: string, version: string, platform: string) {
|
|
|
411
451
|
const db = resolveDatabase(database)
|
|
412
452
|
if (!db || !releases.databases[db]) {
|
|
413
453
|
console.error(`Error: Database '${database}' not found`)
|
|
414
|
-
console.error(
|
|
454
|
+
console.error(
|
|
455
|
+
`\nAvailable: ${Object.keys(releases.databases).sort().join(', ')}`,
|
|
456
|
+
)
|
|
415
457
|
process.exit(1)
|
|
416
458
|
}
|
|
417
459
|
|
|
418
460
|
if (!releases.databases[db][version]) {
|
|
419
461
|
console.error(`Error: Version '${version}' not found for ${db}`)
|
|
420
|
-
console.error(
|
|
462
|
+
console.error(
|
|
463
|
+
`\nAvailable: ${sortVersionsDesc(Object.keys(releases.databases[db])).join(', ')}`,
|
|
464
|
+
)
|
|
421
465
|
process.exit(1)
|
|
422
466
|
}
|
|
423
467
|
|
|
@@ -434,13 +478,17 @@ function cmdInfo(database: string, version: string, platform: string) {
|
|
|
434
478
|
const db = resolveDatabase(database)
|
|
435
479
|
if (!db || !releases.databases[db]) {
|
|
436
480
|
console.error(`Error: Database '${database}' not found`)
|
|
437
|
-
console.error(
|
|
481
|
+
console.error(
|
|
482
|
+
`\nAvailable: ${Object.keys(releases.databases).sort().join(', ')}`,
|
|
483
|
+
)
|
|
438
484
|
process.exit(1)
|
|
439
485
|
}
|
|
440
486
|
|
|
441
487
|
if (!releases.databases[db][version]) {
|
|
442
488
|
console.error(`Error: Version '${version}' not found for ${db}`)
|
|
443
|
-
console.error(
|
|
489
|
+
console.error(
|
|
490
|
+
`\nAvailable: ${sortVersionsDesc(Object.keys(releases.databases[db])).join(', ')}`,
|
|
491
|
+
)
|
|
444
492
|
process.exit(1)
|
|
445
493
|
}
|
|
446
494
|
|
|
@@ -448,16 +496,22 @@ function cmdInfo(database: string, version: string, platform: string) {
|
|
|
448
496
|
const targetPlatform = resolveTargetPlatform(platform, release.platforms)
|
|
449
497
|
const asset = release.platforms[targetPlatform]!
|
|
450
498
|
|
|
451
|
-
console.log(
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
499
|
+
console.log(
|
|
500
|
+
JSON.stringify(
|
|
501
|
+
{
|
|
502
|
+
database: db,
|
|
503
|
+
version,
|
|
504
|
+
platform: targetPlatform,
|
|
505
|
+
url: asset.url,
|
|
506
|
+
sha256: asset.sha256,
|
|
507
|
+
size: asset.size,
|
|
508
|
+
releaseTag: release.releaseTag,
|
|
509
|
+
releasedAt: release.releasedAt,
|
|
510
|
+
},
|
|
511
|
+
null,
|
|
512
|
+
2,
|
|
513
|
+
),
|
|
514
|
+
)
|
|
461
515
|
}
|
|
462
516
|
|
|
463
517
|
function main() {
|
|
@@ -516,7 +570,10 @@ function main() {
|
|
|
516
570
|
process.exit(1)
|
|
517
571
|
}
|
|
518
572
|
const db = resolveDatabase(filteredArgs[1])
|
|
519
|
-
cmdList(
|
|
573
|
+
cmdList(
|
|
574
|
+
db ? [db, filteredArgs[2]] : [filteredArgs[1], filteredArgs[2]],
|
|
575
|
+
jsonOutput,
|
|
576
|
+
)
|
|
520
577
|
break
|
|
521
578
|
}
|
|
522
579
|
|
package/databases.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"sourceRepo": "https://github.com/apache/cassandra",
|
|
9
9
|
"license": "Apache-2.0",
|
|
10
10
|
"commercialUse": true,
|
|
11
|
+
"hostedServiceAllowed": true,
|
|
11
12
|
"protocol": null,
|
|
12
13
|
"note": "Java-based; requires JVM bundled or installed",
|
|
13
14
|
"latestLts": "5.0",
|
|
@@ -43,20 +44,21 @@
|
|
|
43
44
|
"description": "Multi-model database supporting graphs, documents, and key-value with unified query language",
|
|
44
45
|
"type": "Multi-model",
|
|
45
46
|
"sourceRepo": "https://github.com/arangodb/arangodb",
|
|
46
|
-
"license": "
|
|
47
|
-
"commercialUse":
|
|
47
|
+
"license": "BSL-1.1 / ArangoDB Community License",
|
|
48
|
+
"commercialUse": false,
|
|
49
|
+
"hostedServiceAllowed": false,
|
|
48
50
|
"protocol": null,
|
|
49
|
-
"note": "",
|
|
51
|
+
"note": "Unsupported: License changed to BSL-1.1 (source) + ArangoDB Community License (binaries) in v3.12. Community binaries have 100GB dataset limit. Dropped native macOS and Windows binaries in v3.12 (Docker only). linux-arm64 is evaluation-only, not production-recommended.",
|
|
50
52
|
"latestLts": "3.12",
|
|
51
53
|
"versions": {
|
|
52
|
-
"3.12.6":
|
|
54
|
+
"3.12.6": false
|
|
53
55
|
},
|
|
54
56
|
"platforms": {
|
|
55
57
|
"linux-x64": true,
|
|
56
|
-
"linux-arm64":
|
|
57
|
-
"darwin-x64":
|
|
58
|
-
"darwin-arm64":
|
|
59
|
-
"win32-x64":
|
|
58
|
+
"linux-arm64": false,
|
|
59
|
+
"darwin-x64": false,
|
|
60
|
+
"darwin-arm64": false,
|
|
61
|
+
"win32-x64": false
|
|
60
62
|
},
|
|
61
63
|
"cliTools": {
|
|
62
64
|
"server": "arangod",
|
|
@@ -77,7 +79,7 @@
|
|
|
77
79
|
"defaultUser": "root",
|
|
78
80
|
"queryLanguage": "AQL"
|
|
79
81
|
},
|
|
80
|
-
"status": "
|
|
82
|
+
"status": "unsupported"
|
|
81
83
|
},
|
|
82
84
|
"clickhouse": {
|
|
83
85
|
"displayName": "ClickHouse",
|
|
@@ -86,6 +88,7 @@
|
|
|
86
88
|
"sourceRepo": "https://github.com/ClickHouse/ClickHouse",
|
|
87
89
|
"license": "Apache-2.0",
|
|
88
90
|
"commercialUse": true,
|
|
91
|
+
"hostedServiceAllowed": true,
|
|
89
92
|
"protocol": null,
|
|
90
93
|
"note": "Windows binaries unavailable. Require WSL.",
|
|
91
94
|
"latestLts": "25.12",
|
|
@@ -121,18 +124,19 @@
|
|
|
121
124
|
"sourceRepo": "https://github.com/chroma-core/chroma",
|
|
122
125
|
"license": "Apache-2.0",
|
|
123
126
|
"commercialUse": true,
|
|
127
|
+
"hostedServiceAllowed": true,
|
|
124
128
|
"protocol": null,
|
|
125
|
-
"note": "
|
|
129
|
+
"note": "Unsupported: Python-only distribution via pip. No standalone native binaries for any platform. Rust core is compiled as Python extension, not standalone executable.",
|
|
126
130
|
"latestLts": "1.0",
|
|
127
131
|
"versions": {
|
|
128
|
-
"1.0.12":
|
|
132
|
+
"1.0.12": false
|
|
129
133
|
},
|
|
130
134
|
"platforms": {
|
|
131
|
-
"linux-x64":
|
|
132
|
-
"linux-arm64":
|
|
133
|
-
"darwin-x64":
|
|
134
|
-
"darwin-arm64":
|
|
135
|
-
"win32-x64":
|
|
135
|
+
"linux-x64": false,
|
|
136
|
+
"linux-arm64": false,
|
|
137
|
+
"darwin-x64": false,
|
|
138
|
+
"darwin-arm64": false,
|
|
139
|
+
"win32-x64": false
|
|
136
140
|
},
|
|
137
141
|
"cliTools": {
|
|
138
142
|
"server": "chroma",
|
|
@@ -149,7 +153,7 @@
|
|
|
149
153
|
"defaultUser": null,
|
|
150
154
|
"queryLanguage": "HTTP"
|
|
151
155
|
},
|
|
152
|
-
"status": "
|
|
156
|
+
"status": "unsupported"
|
|
153
157
|
},
|
|
154
158
|
"cockroachdb": {
|
|
155
159
|
"displayName": "CockroachDB",
|
|
@@ -158,6 +162,7 @@
|
|
|
158
162
|
"sourceRepo": "https://github.com/cockroachdb/cockroach",
|
|
159
163
|
"license": "CSL (v24.3+), BSL (older)",
|
|
160
164
|
"commercialUse": true,
|
|
165
|
+
"hostedServiceAllowed": false,
|
|
161
166
|
"protocol": "postgresql",
|
|
162
167
|
"note": "CockroachDB Software License restricts competing cloud services; fine for local dev",
|
|
163
168
|
"latestLts": "25.4",
|
|
@@ -195,6 +200,7 @@
|
|
|
195
200
|
"sourceRepo": "https://github.com/apache/couchdb",
|
|
196
201
|
"license": "Apache-2.0",
|
|
197
202
|
"commercialUse": true,
|
|
203
|
+
"hostedServiceAllowed": true,
|
|
198
204
|
"protocol": null,
|
|
199
205
|
"note": "",
|
|
200
206
|
"latestLts": "3.5",
|
|
@@ -232,6 +238,7 @@
|
|
|
232
238
|
"sourceRepo": "https://github.com/duckdb/duckdb",
|
|
233
239
|
"license": "MIT",
|
|
234
240
|
"commercialUse": true,
|
|
241
|
+
"hostedServiceAllowed": true,
|
|
235
242
|
"protocol": null,
|
|
236
243
|
"note": "",
|
|
237
244
|
"latestLts": "1.4",
|
|
@@ -268,6 +275,7 @@
|
|
|
268
275
|
"sourceRepo": "https://github.com/dgraph-io/dgraph",
|
|
269
276
|
"license": "Apache-2.0",
|
|
270
277
|
"commercialUse": true,
|
|
278
|
+
"hostedServiceAllowed": true,
|
|
271
279
|
"protocol": null,
|
|
272
280
|
"note": "Unsupported: Official binaries are Linux-only since v21.03.0 (macOS/Windows dropped Feb 2021). Requires two processes (dgraph zero + dgraph alpha) with no single-process mode. Dynamically links jemalloc which blocks Windows builds. Ratel UI removed from binary, now separate project. Acquired twice (Dgraph Labs → Hypermode → Istari Digital Oct 2025).",
|
|
273
281
|
"latestLts": "25.2",
|
|
@@ -305,6 +313,7 @@
|
|
|
305
313
|
"sourceRepo": "https://github.com/FerretDB/FerretDB",
|
|
306
314
|
"license": "Apache-2.0",
|
|
307
315
|
"commercialUse": true,
|
|
316
|
+
"hostedServiceAllowed": true,
|
|
308
317
|
"protocol": "mongodb",
|
|
309
318
|
"note": "Version 2 requires Postgres-DocumentDB (not on windows) but v1 may in theory build on windows",
|
|
310
319
|
"dependency": {
|
|
@@ -346,6 +355,7 @@
|
|
|
346
355
|
"sourceRepo": "https://github.com/FirebirdSQL/firebird",
|
|
347
356
|
"license": "IDPL-1.0",
|
|
348
357
|
"commercialUse": true,
|
|
358
|
+
"hostedServiceAllowed": true,
|
|
349
359
|
"protocol": null,
|
|
350
360
|
"note": "Single-file database. Supports both embedded (no server process, single-file like SQLite) and client/server modes. Official pre-built binaries available for all platforms.",
|
|
351
361
|
"latestLts": "5.0",
|
|
@@ -382,18 +392,19 @@
|
|
|
382
392
|
"sourceRepo": "https://github.com/geldata/gel",
|
|
383
393
|
"license": "Apache-2.0",
|
|
384
394
|
"commercialUse": true,
|
|
395
|
+
"hostedServiceAllowed": true,
|
|
385
396
|
"protocol": "postgresql",
|
|
386
|
-
"note": "Formerly EdgeDB; PostgreSQL-based with graph capabilities",
|
|
397
|
+
"note": "Formerly EdgeDB; PostgreSQL-based with graph capabilities. No Windows binary (Docker only). No GitHub Release assets; distributed via custom install script. linux-arm64 support uncertain.",
|
|
387
398
|
"latestLts": "7.0",
|
|
388
399
|
"versions": {
|
|
389
400
|
"7.0.0": true
|
|
390
401
|
},
|
|
391
402
|
"platforms": {
|
|
392
403
|
"linux-x64": true,
|
|
393
|
-
"linux-arm64":
|
|
404
|
+
"linux-arm64": false,
|
|
394
405
|
"darwin-x64": true,
|
|
395
406
|
"darwin-arm64": true,
|
|
396
|
-
"win32-x64":
|
|
407
|
+
"win32-x64": false
|
|
397
408
|
},
|
|
398
409
|
"cliTools": {
|
|
399
410
|
"server": "gel-server",
|
|
@@ -412,6 +423,44 @@
|
|
|
412
423
|
},
|
|
413
424
|
"status": "pending"
|
|
414
425
|
},
|
|
426
|
+
"influxdb": {
|
|
427
|
+
"displayName": "InfluxDB",
|
|
428
|
+
"description": "Purpose-built time-series database with SQL support, rewritten in Rust for InfluxDB 3.0",
|
|
429
|
+
"type": "Time-series",
|
|
430
|
+
"sourceRepo": "https://github.com/influxdata/influxdb",
|
|
431
|
+
"license": "Apache-2.0 AND MIT",
|
|
432
|
+
"commercialUse": true,
|
|
433
|
+
"hostedServiceAllowed": true,
|
|
434
|
+
"protocol": null,
|
|
435
|
+
"note": "v3.0 is a Rust rewrite using Apache Arrow/DataFusion. Single binary with bundled Python runtime for plugin system. Most popular time-series database by adoption.",
|
|
436
|
+
"latestLts": "3.0",
|
|
437
|
+
"versions": {
|
|
438
|
+
"3.8.0": true
|
|
439
|
+
},
|
|
440
|
+
"platforms": {
|
|
441
|
+
"linux-x64": true,
|
|
442
|
+
"linux-arm64": true,
|
|
443
|
+
"darwin-x64": true,
|
|
444
|
+
"darwin-arm64": true,
|
|
445
|
+
"win32-x64": true
|
|
446
|
+
},
|
|
447
|
+
"cliTools": {
|
|
448
|
+
"server": "influxdb3",
|
|
449
|
+
"client": null,
|
|
450
|
+
"utilities": [],
|
|
451
|
+
"enhanced": [],
|
|
452
|
+
"note": "HTTP API; use official SDKs or SQL via CLI"
|
|
453
|
+
},
|
|
454
|
+
"connection": {
|
|
455
|
+
"runtime": "server",
|
|
456
|
+
"defaultPort": 8086,
|
|
457
|
+
"scheme": "http",
|
|
458
|
+
"defaultDatabase": null,
|
|
459
|
+
"defaultUser": null,
|
|
460
|
+
"queryLanguage": "SQL"
|
|
461
|
+
},
|
|
462
|
+
"status": "in-progress"
|
|
463
|
+
},
|
|
415
464
|
"kuzu": {
|
|
416
465
|
"displayName": "Kuzu",
|
|
417
466
|
"description": "Embedded graph database with Cypher query language, designed as the DuckDB/SQLite of graph databases",
|
|
@@ -419,8 +468,9 @@
|
|
|
419
468
|
"sourceRepo": "https://github.com/kuzudb/kuzu",
|
|
420
469
|
"license": "MIT",
|
|
421
470
|
"commercialUse": true,
|
|
471
|
+
"hostedServiceAllowed": true,
|
|
422
472
|
"protocol": null,
|
|
423
|
-
"note": "
|
|
473
|
+
"note": "Unsupported: Repo archived Oct 2025 ('Kuzu is working on something new'). Community forks: Ladybug (ex-Facebook/Google lead), Bighorn (Kineviz), RyuGraph (Predictable Labs). No clear successor yet. Last release v0.11.3 binaries still downloadable but unmaintained.",
|
|
424
474
|
"latestLts": "0.11",
|
|
425
475
|
"versions": {
|
|
426
476
|
"0.11.3": false
|
|
@@ -447,7 +497,7 @@
|
|
|
447
497
|
"defaultUser": null,
|
|
448
498
|
"queryLanguage": "Cypher"
|
|
449
499
|
},
|
|
450
|
-
"status": "
|
|
500
|
+
"status": "unsupported"
|
|
451
501
|
},
|
|
452
502
|
"mariadb": {
|
|
453
503
|
"displayName": "MariaDB",
|
|
@@ -456,6 +506,7 @@
|
|
|
456
506
|
"sourceRepo": "https://github.com/MariaDB/server",
|
|
457
507
|
"license": "GPL-2.0",
|
|
458
508
|
"commercialUse": true,
|
|
509
|
+
"hostedServiceAllowed": true,
|
|
459
510
|
"protocol": null,
|
|
460
511
|
"note": "",
|
|
461
512
|
"latestLts": "11.8",
|
|
@@ -494,6 +545,7 @@
|
|
|
494
545
|
"sourceRepo": "https://github.com/meilisearch/meilisearch",
|
|
495
546
|
"license": "MIT",
|
|
496
547
|
"commercialUse": true,
|
|
548
|
+
"hostedServiceAllowed": true,
|
|
497
549
|
"protocol": null,
|
|
498
550
|
"note": "",
|
|
499
551
|
"latestLts": "1.33",
|
|
@@ -531,18 +583,19 @@
|
|
|
531
583
|
"sourceRepo": "https://github.com/milvus-io/milvus",
|
|
532
584
|
"license": "Apache-2.0",
|
|
533
585
|
"commercialUse": true,
|
|
586
|
+
"hostedServiceAllowed": true,
|
|
534
587
|
"protocol": null,
|
|
535
|
-
"note": "
|
|
588
|
+
"note": "Unsupported: Docker-only distribution. No native binaries for any platform. Complex multi-component architecture requiring etcd + MinIO. GitHub releases contain only Docker Compose files.",
|
|
536
589
|
"latestLts": "2.5",
|
|
537
590
|
"versions": {
|
|
538
|
-
"2.5.4":
|
|
591
|
+
"2.5.4": false
|
|
539
592
|
},
|
|
540
593
|
"platforms": {
|
|
541
|
-
"linux-x64":
|
|
542
|
-
"linux-arm64":
|
|
543
|
-
"darwin-x64":
|
|
544
|
-
"darwin-arm64":
|
|
545
|
-
"win32-x64":
|
|
594
|
+
"linux-x64": false,
|
|
595
|
+
"linux-arm64": false,
|
|
596
|
+
"darwin-x64": false,
|
|
597
|
+
"darwin-arm64": false,
|
|
598
|
+
"win32-x64": false
|
|
546
599
|
},
|
|
547
600
|
"cliTools": {
|
|
548
601
|
"server": "milvus",
|
|
@@ -559,7 +612,7 @@
|
|
|
559
612
|
"defaultUser": null,
|
|
560
613
|
"queryLanguage": "HTTP"
|
|
561
614
|
},
|
|
562
|
-
"status": "
|
|
615
|
+
"status": "unsupported"
|
|
563
616
|
},
|
|
564
617
|
"mongodb": {
|
|
565
618
|
"displayName": "MongoDB",
|
|
@@ -567,9 +620,10 @@
|
|
|
567
620
|
"type": "Document",
|
|
568
621
|
"sourceRepo": "https://github.com/mongodb/mongo",
|
|
569
622
|
"license": "SSPL-1.0",
|
|
570
|
-
"commercialUse":
|
|
623
|
+
"commercialUse": true,
|
|
624
|
+
"hostedServiceAllowed": false,
|
|
571
625
|
"protocol": null,
|
|
572
|
-
"note": "
|
|
626
|
+
"note": "SSPL restricts offering MongoDB as a competing managed database service (i.e., MongoDB Atlas competitors). Commercial use in applications, local dev, and internal use is fine. FerretDB available as fully open-source alternative.",
|
|
573
627
|
"latestLts": "8.0",
|
|
574
628
|
"versions": {
|
|
575
629
|
"8.2.3": true,
|
|
@@ -611,6 +665,7 @@
|
|
|
611
665
|
"sourceRepo": "https://github.com/mysql/mysql-server",
|
|
612
666
|
"license": "GPL-2.0",
|
|
613
667
|
"commercialUse": true,
|
|
668
|
+
"hostedServiceAllowed": true,
|
|
614
669
|
"protocol": null,
|
|
615
670
|
"note": "",
|
|
616
671
|
"latestLts": "8.4",
|
|
@@ -650,6 +705,7 @@
|
|
|
650
705
|
"sourceRepo": "https://github.com/opensearch-project/OpenSearch",
|
|
651
706
|
"license": "Apache-2.0",
|
|
652
707
|
"commercialUse": true,
|
|
708
|
+
"hostedServiceAllowed": true,
|
|
653
709
|
"protocol": "elasticsearch",
|
|
654
710
|
"note": "",
|
|
655
711
|
"latestLts": "3.4",
|
|
@@ -687,6 +743,7 @@
|
|
|
687
743
|
"sourceRepo": "https://github.com/postgres/postgres",
|
|
688
744
|
"license": "PostgreSQL",
|
|
689
745
|
"commercialUse": true,
|
|
746
|
+
"hostedServiceAllowed": true,
|
|
690
747
|
"protocol": null,
|
|
691
748
|
"note": "",
|
|
692
749
|
"latestLts": "18",
|
|
@@ -732,6 +789,7 @@
|
|
|
732
789
|
"sourceRepo": "https://github.com/FerretDB/documentdb",
|
|
733
790
|
"license": "Apache-2.0",
|
|
734
791
|
"commercialUse": true,
|
|
792
|
+
"hostedServiceAllowed": true,
|
|
735
793
|
"protocol": "postgresql",
|
|
736
794
|
"note": "Backend for FerretDB; includes pg_cron, pgvector, PostGIS, rum extensions",
|
|
737
795
|
"latestLts": "17",
|
|
@@ -768,6 +826,7 @@
|
|
|
768
826
|
"sourceRepo": "https://github.com/qdrant/qdrant",
|
|
769
827
|
"license": "Apache-2.0",
|
|
770
828
|
"commercialUse": true,
|
|
829
|
+
"hostedServiceAllowed": true,
|
|
771
830
|
"protocol": null,
|
|
772
831
|
"note": "",
|
|
773
832
|
"latestLts": "1.16",
|
|
@@ -805,6 +864,7 @@
|
|
|
805
864
|
"sourceRepo": "https://github.com/questdb/questdb",
|
|
806
865
|
"license": "Apache-2.0",
|
|
807
866
|
"commercialUse": true,
|
|
867
|
+
"hostedServiceAllowed": true,
|
|
808
868
|
"protocol": null,
|
|
809
869
|
"note": "",
|
|
810
870
|
"dependency": {
|
|
@@ -846,9 +906,10 @@
|
|
|
846
906
|
"type": "Key-Value",
|
|
847
907
|
"sourceRepo": "https://github.com/redis/redis",
|
|
848
908
|
"license": "RSALv2/SSPLv1 (7.4+), AGPL-3.0 (8.0+)",
|
|
849
|
-
"commercialUse":
|
|
909
|
+
"commercialUse": true,
|
|
910
|
+
"hostedServiceAllowed": false,
|
|
850
911
|
"protocol": null,
|
|
851
|
-
"note": "
|
|
912
|
+
"note": "RSALv2 restricts building competing products to Redis itself. AGPL-3.0 (8.0+) requires source disclosure if you modify Redis and offer it as a network service. Commercial use in applications, local dev, and internal use is fine. Valkey available as BSD-licensed drop-in alternative.",
|
|
852
913
|
"latestLts": "8.4",
|
|
853
914
|
"versions": {
|
|
854
915
|
"8.4.0": true,
|
|
@@ -884,6 +945,7 @@
|
|
|
884
945
|
"sourceRepo": "https://github.com/facebook/rocksdb",
|
|
885
946
|
"license": "GPL-2.0 OR Apache-2.0",
|
|
886
947
|
"commercialUse": true,
|
|
948
|
+
"hostedServiceAllowed": true,
|
|
887
949
|
"protocol": null,
|
|
888
950
|
"note": "Single-file database. Library-first with ldb and sst_dump CLI tools. No official pre-built binaries - build from source required for all platforms. Widely used as storage engine by CockroachDB, TiKV, MySQL/MyRocks.",
|
|
889
951
|
"latestLts": "10.10",
|
|
@@ -920,6 +982,7 @@
|
|
|
920
982
|
"sourceRepo": "https://github.com/sqlite/sqlite",
|
|
921
983
|
"license": "Public Domain",
|
|
922
984
|
"commercialUse": true,
|
|
985
|
+
"hostedServiceAllowed": true,
|
|
923
986
|
"protocol": null,
|
|
924
987
|
"note": "",
|
|
925
988
|
"latestLts": "3.51",
|
|
@@ -954,10 +1017,11 @@
|
|
|
954
1017
|
"description": "Multi-model database combining graph, document, key-value, and time-series with SQL-like syntax",
|
|
955
1018
|
"type": "Multi-model",
|
|
956
1019
|
"sourceRepo": "https://github.com/surrealdb/surrealdb",
|
|
957
|
-
"license": "
|
|
1020
|
+
"license": "BSL-1.1",
|
|
958
1021
|
"commercialUse": true,
|
|
1022
|
+
"hostedServiceAllowed": false,
|
|
959
1023
|
"protocol": null,
|
|
960
|
-
"note": "Rust-based; single binary;
|
|
1024
|
+
"note": "Rust-based; single binary. License is BSL-1.1 (not Apache-2.0); prohibits competing DBaaS offerings. Converts to Apache-2.0 after 4 years per release. Fine for local dev and internal use.",
|
|
961
1025
|
"latestLts": "2.3",
|
|
962
1026
|
"versions": {
|
|
963
1027
|
"2.3.2": true
|
|
@@ -993,8 +1057,9 @@
|
|
|
993
1057
|
"sourceRepo": "https://github.com/pingcap/tidb",
|
|
994
1058
|
"license": "Apache-2.0",
|
|
995
1059
|
"commercialUse": true,
|
|
1060
|
+
"hostedServiceAllowed": true,
|
|
996
1061
|
"protocol": "mysql",
|
|
997
|
-
"note": "",
|
|
1062
|
+
"note": "No native Windows binary. macOS binaries only available via TiUP package manager, not direct download. Can run standalone with UniStore (without TiKV/PD).",
|
|
998
1063
|
"latestLts": "8.5",
|
|
999
1064
|
"versions": {
|
|
1000
1065
|
"8.5.4": true
|
|
@@ -1004,7 +1069,7 @@
|
|
|
1004
1069
|
"linux-arm64": true,
|
|
1005
1070
|
"darwin-x64": true,
|
|
1006
1071
|
"darwin-arm64": true,
|
|
1007
|
-
"win32-x64":
|
|
1072
|
+
"win32-x64": false
|
|
1008
1073
|
},
|
|
1009
1074
|
"cliTools": {
|
|
1010
1075
|
"server": "tidb-server",
|
|
@@ -1030,6 +1095,7 @@
|
|
|
1030
1095
|
"sourceRepo": "https://github.com/typedb/typedb",
|
|
1031
1096
|
"license": "MPL-2.0",
|
|
1032
1097
|
"commercialUse": true,
|
|
1098
|
+
"hostedServiceAllowed": true,
|
|
1033
1099
|
"protocol": null,
|
|
1034
1100
|
"note": "Rewritten from Java to Rust in v3.0 (Dec 2024). Binaries distributed via Cloudsmith and GitHub Releases.",
|
|
1035
1101
|
"latestLts": "3.8",
|
|
@@ -1058,17 +1124,18 @@
|
|
|
1058
1124
|
"defaultUser": null,
|
|
1059
1125
|
"queryLanguage": "TypeQL"
|
|
1060
1126
|
},
|
|
1061
|
-
"status": "
|
|
1127
|
+
"status": "completed"
|
|
1062
1128
|
},
|
|
1063
1129
|
"timescaledb": {
|
|
1064
1130
|
"displayName": "TimescaleDB",
|
|
1065
1131
|
"description": "Time-series database built on PostgreSQL for fast analytics and scalability",
|
|
1066
1132
|
"type": "Time-series",
|
|
1067
1133
|
"sourceRepo": "https://github.com/timescale/timescaledb",
|
|
1068
|
-
"license": "Apache-2.0",
|
|
1134
|
+
"license": "Apache-2.0 / TSL",
|
|
1069
1135
|
"commercialUse": true,
|
|
1136
|
+
"hostedServiceAllowed": false,
|
|
1070
1137
|
"protocol": "postgresql",
|
|
1071
|
-
"note": "",
|
|
1138
|
+
"note": "Dual-licensed: core is Apache-2.0, advanced features under Timescale License (TSL) which restricts competing DBaaS. PostgreSQL extension, not standalone.",
|
|
1072
1139
|
"latestLts": "2.24",
|
|
1073
1140
|
"versions": {
|
|
1074
1141
|
"2.24.0": true
|
|
@@ -1104,6 +1171,7 @@
|
|
|
1104
1171
|
"sourceRepo": "https://github.com/valkey-io/valkey",
|
|
1105
1172
|
"license": "BSD-3-Clause",
|
|
1106
1173
|
"commercialUse": true,
|
|
1174
|
+
"hostedServiceAllowed": true,
|
|
1107
1175
|
"protocol": "redis",
|
|
1108
1176
|
"note": "",
|
|
1109
1177
|
"latestLts": "9.0",
|
|
@@ -1141,8 +1209,9 @@
|
|
|
1141
1209
|
"sourceRepo": "https://github.com/weaviate/weaviate",
|
|
1142
1210
|
"license": "BSD-3-Clause",
|
|
1143
1211
|
"commercialUse": true,
|
|
1212
|
+
"hostedServiceAllowed": true,
|
|
1144
1213
|
"protocol": null,
|
|
1145
|
-
"note": "
|
|
1214
|
+
"note": "Go-based single binary. No official Windows binary; macOS distributed as universal binary (x64+arm64).",
|
|
1146
1215
|
"latestLts": "1.29",
|
|
1147
1216
|
"versions": {
|
|
1148
1217
|
"1.29.0": true
|
|
@@ -1152,7 +1221,7 @@
|
|
|
1152
1221
|
"linux-arm64": true,
|
|
1153
1222
|
"darwin-x64": true,
|
|
1154
1223
|
"darwin-arm64": true,
|
|
1155
|
-
"win32-x64":
|
|
1224
|
+
"win32-x64": false
|
|
1156
1225
|
},
|
|
1157
1226
|
"cliTools": {
|
|
1158
1227
|
"server": "weaviate",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hostdb",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0",
|
|
4
4
|
"description": "Source and download pre-built database binaries for multiple platforms, distributed via GitHub Releases",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"download:couchdb": "tsx builds/couchdb/download.ts",
|
|
35
35
|
"download:duckdb": "tsx builds/duckdb/download.ts",
|
|
36
36
|
"download:ferretdb": "tsx builds/ferretdb/download.ts",
|
|
37
|
+
"download:influxdb": "tsx builds/influxdb/download.ts",
|
|
37
38
|
"download:mariadb": "tsx builds/mariadb/download.ts",
|
|
38
39
|
"download:meilisearch": "tsx builds/meilisearch/download.ts",
|
|
39
40
|
"download:mongodb": "tsx builds/mongodb/download.ts",
|
package/releases.json
CHANGED
|
@@ -853,6 +853,40 @@
|
|
|
853
853
|
}
|
|
854
854
|
}
|
|
855
855
|
},
|
|
856
|
+
"typedb": {
|
|
857
|
+
"3.8.0": {
|
|
858
|
+
"version": "3.8.0",
|
|
859
|
+
"releaseTag": "typedb-3.8.0",
|
|
860
|
+
"releasedAt": "2026-02-08T18:21:49Z",
|
|
861
|
+
"platforms": {
|
|
862
|
+
"darwin-arm64": {
|
|
863
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/typedb-3.8.0/typedb-3.8.0-darwin-arm64.tar.gz",
|
|
864
|
+
"sha256": "faff22f18304a28ae02ad2a7db1981dfabc23041ec2061597bc0d60db0efac51",
|
|
865
|
+
"size": 25309984
|
|
866
|
+
},
|
|
867
|
+
"darwin-x64": {
|
|
868
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/typedb-3.8.0/typedb-3.8.0-darwin-x64.tar.gz",
|
|
869
|
+
"sha256": "be456e44eea2721e8134934586e6f8d91cf6aea46d5f445e03719b188d6b0cb1",
|
|
870
|
+
"size": 26717845
|
|
871
|
+
},
|
|
872
|
+
"linux-arm64": {
|
|
873
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/typedb-3.8.0/typedb-3.8.0-linux-arm64.tar.gz",
|
|
874
|
+
"sha256": "69668be944fde20bddf8932192d1387fa02cf2d55cbfb39daa4e6a312f59a342",
|
|
875
|
+
"size": 29852879
|
|
876
|
+
},
|
|
877
|
+
"linux-x64": {
|
|
878
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/typedb-3.8.0/typedb-3.8.0-linux-x64.tar.gz",
|
|
879
|
+
"sha256": "b524826c72008cad7bea27dfc5c10bec8692b39636e937887eca4b7a380f6acb",
|
|
880
|
+
"size": 30190104
|
|
881
|
+
},
|
|
882
|
+
"win32-x64": {
|
|
883
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/typedb-3.8.0/typedb-3.8.0-win32-x64.zip",
|
|
884
|
+
"sha256": "a34ef0180278bef570c7bd4b9e64423c49c3d81977b0eb6d5d897e5f8af9aaeb",
|
|
885
|
+
"size": 24220045
|
|
886
|
+
}
|
|
887
|
+
}
|
|
888
|
+
}
|
|
889
|
+
},
|
|
856
890
|
"valkey": {
|
|
857
891
|
"9.0.1": {
|
|
858
892
|
"version": "9.0.1",
|