Skip to content

$nodeVersion

$nodeVersion will return your current node.js version.

Usage

$nodeVersion

Example(s)

This will return the current node.js version your bot is running on:

1
client.command({
2
name: "nodeVersion",
3
code: `
4
$nodeVersion
5
`
6
});