Learn R Programming

languageserver (version 0.3.16)

run: Run the R language server

Description

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

Run this code
if (FALSE) {
# to use stdio
languageserver::run()

# to use tcp server
languageserver::run(port = 8888)
}

Run the code above in your browser using DataLab