-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dream & taucorder] add npm support (#187)
- Loading branch information
Showing
9 changed files
with
788 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
`dream` is a local development tool that lets you run a full-fledged Taubyte-based Cloud on your machine. For documentation, visit [https://tau.how](https://tau.how). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
#!/usr/bin/env node | ||
|
||
const fs = require("fs"); | ||
const path = require("path"); | ||
const axios = require("axios"); | ||
const ProgressBar = require("progress"); | ||
const { spawn } = require("child_process"); | ||
const tar = require("tar"); | ||
const packageJson = require("./package.json"); | ||
|
||
const binaryDir = path.join(__dirname, "bin"); | ||
const binaryPath = path.join(binaryDir, "dream"); | ||
const versionFilePath = path.join(binaryDir, "version.txt"); | ||
const packageVersion = packageJson.dream; | ||
|
||
function binaryExists() { | ||
return fs.existsSync(binaryPath); | ||
} | ||
|
||
function versionMatches() { | ||
if (!fs.existsSync(versionFilePath)) { | ||
return false; | ||
} | ||
const installedVersion = fs.readFileSync(versionFilePath, "utf-8").trim(); | ||
return installedVersion === packageVersion; | ||
} | ||
|
||
function parseAssetName() { | ||
let os, arch; | ||
|
||
if (process.platform === "darwin") { | ||
os = "darwin"; | ||
} else if (process.platform === "linux") { | ||
os = "linux"; | ||
} else if (process.platform === "win32") { | ||
os = "windows"; | ||
} else { | ||
os = null; | ||
} | ||
|
||
if (process.arch === "x64") { | ||
arch = "amd64"; | ||
} else if (process.arch === "arm64") { | ||
arch = "arm64"; | ||
} else { | ||
arch = null; | ||
} | ||
|
||
return { os, arch }; | ||
} | ||
|
||
async function downloadAndExtractBinary() { | ||
if (binaryExists() && versionMatches()) { | ||
return; | ||
} | ||
|
||
let version = packageVersion; | ||
|
||
const { os: currentOs, arch: currentArch } = parseAssetName(); | ||
const assetName = `dream_${version}_${currentOs}_${currentArch}.tar.gz`; | ||
const assetUrl = `https://github.com/taubyte/tau/releases/download/v${version}/${assetName}`; | ||
|
||
console.log(`Downloading dream v${version}...`); | ||
const { data, headers } = await axios({ | ||
url: assetUrl, | ||
method: "GET", | ||
responseType: "stream", | ||
}); | ||
|
||
const totalLength = headers["content-length"]; | ||
const progressBar = new ProgressBar("-> downloading [:bar] :percent :etas", { | ||
width: 40, | ||
complete: "=", | ||
incomplete: " ", | ||
renderThrottle: 1, | ||
total: parseInt(totalLength), | ||
}); | ||
|
||
if (!fs.existsSync(binaryDir)) { | ||
fs.mkdirSync(binaryDir); | ||
} | ||
|
||
const tarPath = path.join(binaryDir, assetName); | ||
const writer = fs.createWriteStream(tarPath); | ||
data.on("data", (chunk) => progressBar.tick(chunk.length)); | ||
data.pipe(writer); | ||
|
||
return new Promise((resolve, reject) => { | ||
writer.on("finish", async () => { | ||
console.log(`Extracting dream v${version}...`); | ||
await tar.x({ | ||
file: tarPath, | ||
C: binaryDir, | ||
}); | ||
fs.unlinkSync(tarPath); // Remove the tarball after extraction | ||
fs.writeFileSync(versionFilePath, version); // Save the version to a file | ||
resolve(); | ||
}); | ||
writer.on("error", reject); | ||
}); | ||
} | ||
|
||
function executeBinary() { | ||
if (!binaryExists()) { | ||
console.error("Binary not found. Please run the install script."); | ||
return; | ||
} | ||
|
||
// Capture arguments passed to the script, excluding the first two elements | ||
const args = process.argv.slice(2); | ||
|
||
const child = spawn(binaryPath, args, { | ||
stdio: "inherit", | ||
}); | ||
|
||
child.on("error", (err) => { | ||
console.error("Failed to start binary:", err); | ||
}); | ||
} | ||
|
||
async function main() { | ||
try { | ||
await downloadAndExtractBinary(); | ||
executeBinary(); | ||
} catch (err) { | ||
console.error(err.message); | ||
} | ||
} | ||
|
||
main(); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.