Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 559 Bytes

File metadata and controls

44 lines (33 loc) · 559 Bytes
code type title
true
page
nodeVersion | API | Core

nodeVersion

Returns the Node.js version currently running Kuzzle.


Query Syntax

HTTP

URL: http://kuzzle:7512/debug/_nodeVersion
Method: GET

Other protocols

{
  "controller": "debug",
  "action": "nodeVersion",
}

Response

Returns a string containing the Node.js version:

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