# Functions
InstallArchive runs on node, downloads the URL and extracts the archive to the dest diretory.
IsDaemonRunning runs on node and returns whether the daemon is still running or not.
IsDir runs on node and checks path is directory or not.
IsFileExist runs on node and returns true if the file exists.
IsProcessExist runs on node and returns true if the porcess still exists.
KillDaemon runs on node and kills the daemon process.
MatchInArray returns true if the given string value is in the array.
Mkdir runs on node and makes a directory.
NewDaemonOptions returns a default daemon options.
ReadDir runs on node and lists the files of dir.
RemoveDir runs on node and removes the diretory.
StartDaemon runs on node and starts a daemon process with options.
StopDaemon runs on node and stops the daemon process.
Wget runs on node, downloads a string URL to the dest directory and returns the file path.
WriteFile runs on node and writes data to file.
# Structs
BlockRunner provides a simple way to run tasks, block until all the tasks are finished.
DaemonOptions is the options to start a command in daemon mode.