A Node.js command line tool for downloading and installing Oracle Instant Client Packages (Basic and SDK).
This tool helps to automate the downloading and extracting of the Oracle Instant Client Basic and SDK Packages. You must have an Oracle Account to use it and accept the OTN Development and Distribution License Agreement for Instant Client. This is needed because all of the files come directly from Oracle. You can register for a free account here.
npm install -g instantclient
From the command prompt, navigate to the directory where you would like the instantclient folder placed and run instantclient
. Now just follow the prompts.
If you wish, you could set this command line tool to automatically install by editing the scripts object of your package.json to include a preinstall section like so:
"scripts": {
"preinstall": "npm i -g instantclient"
}
This could be useful if you wish to automatically give people this tool upon installation of your own program.