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

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