Run the R language server
Usage
run(debug = FALSE, host = "localhost", port = NULL)
Arguments
- debug
set TRUE to show debug information in stderr;
or it could be a character string specifying the log file
- host
the hostname used to create the tcp server, not used when port is NULL
- port
the port used to create the tcp server. If NULL, use stdio instead.
Examples
if (FALSE) { # \dontrun{
# to use stdio
languageserver::run()
# to use tcp server
languageserver::run(port = 8888)
} # }