Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* @ohah @Enjoywater @Bori-github @ming-Jo

Copy link

Copilot AI Dec 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CODEOWNERS file ends with an unnecessary blank line. While this is a minor style issue, it's cleaner to remove trailing blank lines in configuration files.

Suggested change

Copilot uses AI. Check for mistakes.
204 changes: 204 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions apps/executeJS/src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,23 @@ pub fn run() {
// 앱 시작 시 초기화 작업
tauri::async_runtime::spawn(async {
tracing::info!("ExecuteJS 애플리케이션이 시작되었습니다.");

// Node.js 바이너리 확인 및 다운로드
eprintln!("[ExecuteJS] Node.js 바이너리 확인 시작...");
match node_runtime::NodeExecutor::ensure_node_binary().await {
Ok(path) => {
eprintln!(
"[ExecuteJS] ✅ Node.js 바이너리 준비 완료: {}",
path.display()
);
tracing::info!("Node.js 바이너리 준비 완료: {}", path.display());
}
Err(e) => {
eprintln!("[ExecuteJS] ❌ Node.js 바이너리 초기화 실패: {}", e);
tracing::error!("Node.js 바이너리 초기화 실패: {}", e);
// 사용자에게 알림은 나중에 UI로 표시할 수 있음
}
}
});

Ok(())
Expand Down
4 changes: 0 additions & 4 deletions apps/executeJS/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@
"app"
],
"icon": [],
"resources": [
"resources/node-runtime/node-v24.12.0-darwin-arm64/node",
"resources/node-runtime/node-v24.12.0-win-arm64/node.exe"
],
"macOS": {
"entitlements": null,
"exceptionDomain": "",
Expand Down
9 changes: 9 additions & 0 deletions crates/node-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true

# Node.js 다운로드용
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "stream"] }
tar = "0.4"
xz2 = "0.1"
zip = "0.6"
dirs = "5.0"
sha2 = "0.10"
fs2 = "0.4"

[dev-dependencies]
tokio.workspace = true

Loading