class ReactOnRails::SystemChecker

def node_missing?

def node_missing?
  command = ReactOnRails::Utils.running_on_windows? ? "where" : "which"
  _stdout, _stderr, status = Open3.capture3(command, "node")
  !status.success?
end