New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

autonomous-db

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

autonomous-db

Oracle Autonomous Database connection for Nodejs developers (unofficial)

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

Autonomous Data Base (experimental) (unoficcial)

This repository contains the npm package's to work with Oracle Autonomous Data Base for NodeJs developers (unoficcial) name autonomous-db.

Setup

First you need install Node and the autonomous-db package:

npm install autonomous-db

The config's values come from your Autonomous Data Warehouse (ADW) / Autonomous Transaction Procesing (ATP), look for Oracle Rest Data Services (ORDS) URL, finally, this user must to have ORDS permissions too.

Example

const adb = require('autonomous-db');

const config = {
    ordsUrl : "https://<host>.adb.<region>.oraclecloudapps.com/ords/",
    user : "user",
    password : "password",
};

const db = new adb.AutonomousDataBase(config);

db.query("SELECT sysdate FROM dual")
.then(data => console.log(data))
  .catch(err => console.log(err));

References

Keywords

node

FAQs

Package last updated on 07 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts