connect
Establish a connection to an nREPL server by specifying host and port to evaluate Clojure code, inspect namespaces, and check connection statuses.
Instructions
Connect to an nREPL server. Example: (connect {:host "localhost" :port 1234})
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | Yes | nREPL server host | |
port | Yes | nREPL server port |
Input Schema (JSON Schema)
{
"properties": {
"host": {
"description": "nREPL server host",
"type": "string"
},
"port": {
"description": "nREPL server port",
"type": "number"
}
},
"required": [
"host",
"port"
],
"type": "object"
}