I am trying to use the database methods like db._databases() or db._name() in a node app.
The manual shows require("@arangodb").db._name(); which works fine from arangosh but when I try to require('@arangodb') in the app, node throws
Error: Cannot find module '@arangodb'.
Attempting to install from NPM results in an error that it is not in the NPM registry.
So how can one require that namespace? Any pointers in the right direction would be greatly appreciated.
PS: I'm running the current 3.4rc in a docker container in case this makes a difference.