Besides the obvious way of downloading the driver code, there is a much easier way to install the driver – by using the NPM driver support.
NPM is a Node.js package manager. As its name implies, you can use it to install node programs/modules which are registered in the npm catalog, including CUBRID Node.js driver.
So all you have to do to install node-cubrid is to execute the following command:
C:\>npm install node-cubrid npm http GET https://registry.npmjs.org/node-cubrid npm http 304 https://registry.npmjs.org/node-cubrid node-cubrid@1.0 node_modules\node-cubrid C:\>
NPM automatically takes care of any dependencies and of downloading the version of the driver code. And uninstalling the driver is all about executing a simple command:
npm uninstall node-cubrid