summary refs log tree commit diff stats
path: root/compiler/nodejs.nim
blob: 7f9f28aaf9d32961ef8846e83179bc2b8233832e (plain) (blame)
1
2
3
4
5
6
7
8
import os

proc findNodeJs*(): string =
  result = findExe("nodejs")
  if result == "":
    result = findExe("node")
  if result == "":
    result = findExe("iojs")