Core
API v2.x
2

nodeVersion #

Returns the Node.js version currently running Kuzzle.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/debug/_nodeVersion
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "debug",
  "action": "nodeVersion",
}

Response #

Returns a string containing the Node.js version:

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "controller": "debug",
  "action": "nodeVersion",
  "requestId": "<unique request identifier>",
  "result": "<node version>"
}