Build a Node.js Application

To build a Node.js application that accesses an Autonomous Database, you start by configuring your development system to support database access that can take advantage of the continuous availability and high performance features of Autonomous Database.

After configuring your development system, you code database connections and SQL statements in your application to take advantage of the continuous availability and high performance features.

Tip:

For a "try it out" alternative to reading the following topics, you can go through the Lab 3: Build and Deploy Node.js Application in Oracle Autonomous Database Dedicated for Developers and Database Users Workshop.

Configure Your Node.js Development System

To configure your development system so that your Node.js application can take advantage of the continuous availability and high performance features of an Autonomous Database, you perform these steps.

  1. Download and install Node.js.
  2. Download and install Oracle Instant Client.
  3. Download and install node-oracledb.
  4. Download the client credentials for the database and make them available to Oracle Instant Client.

Before You Begin

Your development system must meet certain criteria to configure it successfully.

Download and Install Node.js

Download and install Node.js for your system's OS and architecture:

  • Oracle Linux:

    Run these commands to download and install the latest version of Node.js:

    sudo yum install -y oracle-release-el7 oracle-nodejs-release-el7
    sudo yum install -y nodejs 
  • Other OSes and architectures:

    Go to the Node.js Downloads page, select the latest LTS (Long Term Support) version for your system's OS and architecture, and install it.

Download and Install Oracle Instant Client

You need Oracle Instant Client libraries version 19.6 or later.

Download and install the Oracle Instant Client basic package for your system's OS and architecture:

  • Oracle Linux:

    Run these commands to download and install the Oracle Instant Client basic package:

    sudo yum -y install oracle-release-el7
    sudo yum -y install oracle-instantclient19.3-basic

    (If you want to see a list of all Instant Client packages, go to http://yum.oracle.com/repo/OracleLinux/OL7/oracle/instantclient/x86_64/index.html.)

  • Other OSes and architectures:

    1. Go to the Oracle Instant Client Downloads page and select the download for your system's OS and architecture.

    2. On the download page, accept the Oracle Technology Network License Agreement, download the latest version of the Basic Package, and then install it by following the instructions at the bottom of the download page.

Download and Install node-oracledb

Download and install the node-oracledb add-on for Node.js for your system's OS and architecture:

  • Oracle Linux:

    Run these commands to download and install the latest version of node-oracledb:

    sudo yum install -y oracle-release-el7 oracle-nodejs-release-el7
    sudo yum install -y node-oracledb-node10
  • Other OSes and architectures:

    Go to the Installing node-oracledb page, choose the "My database is on another machine" instructions for your OS and architecture, and then follow the Install the add-on instructions.

Download and Install Client Credentials for the Database

  1. Download the zip file containing client credentials for your database to a secure directory on your computer.

    This zip file is available for download from the database's Details page in the Oracle Cloud console. Download the credentials as follows.

    1. In your web browser, sign in to Oracle Cloud and navigate to the Details page for the Autonomous Database.

    2. Click DB Connection.

    3. On the Database Connection page click Download.

    4. In the Download Wallet dialog, enter a wallet password in the Password field and confirm the password in the Confirm Password field.

      The password must be at least 8 characters long and must include at least 1 letter and either 1 numeric character or 1 special character.

    5. Click Download to save the client credentials zip file to a secure directory.

  2. After downloading the zip file, follow these steps:

    1. Unzip the client credentials zip file.

    2. Edit the sqlnet.ora file provided in the client credentials, replacing "?/network/admin" with the full path of the directory where you unzipped the client credentials; for example, change:

      (DIRECTORY="?/network/admin")

      to:

      (DIRECTORY="/users/jdoe/adbcredentials")
    3. Create the TNS_ADMIN environment variable, setting its value to the full path of the directory where you unzipped the client credentials.

Code Database Connections and SQL Statements

After configuring your development system to support Node.js application connectivity to an Autonomous Database, follow these steps to ensure optimal performance of your application's use of the database:

  1. Add the dependency on the node-oracledb add-on to your application's package.json file.

  2. Code connections for high performance and continuous availability.

Add the node-oracledb Dependency to package.json

Edit the dependencies object in the package.json file for your application, adding the oracledb package and version. (Use command npm init to generate package.json if it doesn't exist.) For example:

. . .
"dependencies": {
  . . .,
  "oracledb": "^4.0",
  . . .
},
. . .

For detailed information about the dependencies object, see the npm-package.json page. To display the oracledb version installed, you can use the npm list command; for example:

npm list -g --depth=0

Code Connections for High Performance and Continuous Availability

To achieve high performance and continuous availability, follow these guidelines when making connections to the database:

For example:

pool = await oracledb.createPool({
  events: true,
  user: "appuser",
  password: process.env.MY_PASSWORD_ENV_VAR,
  connectString: "tp_tls"
});

This example creates a pool for connections to the tp_tls database service, and enables FAN by setting the events property to true.

Additional Resources

For detailed information about node-oracledb, go to the node-oracledb Documentation page, which includes both an API Reference and a User Guide.

For code examples that demonstrate a wide variety of node-oracledb features, go to the node-oracledb examples folder.