mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
8 lines
183 B
Nim
8 lines
183 B
Nim
import os
|
|
|
|
proc findNodeJs*(): string {.inline.} =
|
|
## Find NodeJS executable and return it as a string.
|
|
result = findExe("nodejs")
|
|
if result == "":
|
|
result = findExe("node")
|