OrientJS - Node.js Driver
Official orientdb driver for node.js. Fast, lightweight, uses the binary protocol.
NOTE: Release v3.0 provides new APIs in order to support OrientDB 3.0 features.
Features
- Tested with latest OrientDB (2.2.x and 3.0.x).
- Intuitive API, based on bluebird promises.
- Fast binary protocol parser.
- Streaming Support
- Stateful Transaction Support
- Distributed Support
- Access multiple databases via the same socket (Session Pooling).
- Connection Pooling
- Migration support.
- Simple CLI.
Versions and Compatibility
OrientJS v3.0 contains backwards compatible APIs for OrientDB 2.2.x and OrientDB 3.0.x using the old protocol version 33 (Legacy). New APIs are shipped in v3.0 to support the new protocol featuring Streaming, Stateful transactions, new SQL engine etc..
Resources
Documentation
Installation
Install via npm.
npm install orientjs
Quick Start
Connect to OrientDB
Use the connect
function in order to create a new OrientDBClient
instance.
const OrientDBClient = require("orientjs").OrientDBClient;
OrientDBClient.connect({
host: "localhost",
port: 2424
}).then(client => {
return client.close();
}).then(()=> {
console.log("Client closed");
});
or with async/await
let client = await OrientDBClient.connect({
host: "localhost",
port: 2424
});
await client.close();
console.log("Client Closed");
Single Session
To open a new standalone session use the client.session
api. This api will create a new stateful session associated with the given database and credentials. Once done, call session.close
in order to release the session on the server. Session are stateful since OrientJS 3.0 as they can execute server side transactions.
client.session({ name: "demodb", username: "admin", password: "admin" })
.then(session => {
// use the session
...
// close the session
return session.close();
});
or with async/await
let session = await client.session({ name: "demodb", username: "admin", password: "admin" });
// use the session
...
// close the session
await session.close();
console.log("Session Closed");
Pooled Sessions
Opening and closing sessions everytime can be expensive, since open and close require a network request to the server. Use the API client.sessions
to create a pool of sessions with a given database and credentials. To get a session from the pool call the api pool.acquire
. Once done with the session you can return the session to the pool by calling session.close
// Create a sessions Pool
client.sessions({ name: "demodb", username: "admin", password: "admin", pool: { max: 10} })
.then(pool => {
// acquire a session
return pool.acquire()
.then(session => {
// use the session
...
// release the session
return session.close();
})
.then(() => {
// close the pool
return pool.close();
});
});
});
or with async/await
// Create a sessions Pool
let pool = await client.sessions({
name: "demodb",
username: "admin",
password: "admin",
pool: { max: 10 }
});
// acquire a session from the pool
let session = await pool.acquire();
// use the session
// ...
// release the session
await session.close();
// close the pool
await pool.close();
Session API
Once you have initialized a session using the above APIs you can:
- Run a Query (Idempotent SQL statement)
- Run a Command (Idempotent or non idempotent SQL statement)
- Run a Transaction
- Run a live query
Query
Streaming
session.query("select from OUser where name = :name", {params: { name: "admin" }})
.on("data", data => {
console.log(data);
})
.on('error',(err)=> {
console.log(err);
})
.on("end", () => {
console.log("End of the stream");
});
or use .all
API that convert the stream to a Promise and collect the result set into an array.
session.query("select from OUser where name = :name", { params : {name: "admin" }})
.all()
.then((results)=> {
console.log(results);
});
or with async/await
try {
let result = await session.query("select from OUser where name = :name", {params: { name: "admin" }})
.all();
console.log(result);
} catch (err) {
console.log(err);
}
Command
session.command("insert into V set name = :name", {params: { name: "test" }})
.all()
.then(result => {
console.log(result);
});
or with async/await
try {
let result = session.command("insert into V set name = :name", {params: { name: "test" }})
.all();
console.log(result);
} catch (err) {
console.log(err);
}
Transaction
Use the api session.runInTransaction in order to run a unit of work in a managed transaction (begin/commit/retry) The unit of work should return a Promise.
session.runInTransaction((tx)=>{
return tx.command("insert into V set name = :name", {params: { name: "test" }}).all()
}).then(({result,tx}) => {
console.log(result);
console.log(tx);
});
or with async/await
try {
let { result, tx } = await session.runInTransaction(tx => {
return tx
.command("insert into V set name = :name", { params: { name: "test" } })
.all();
});
console.log(result);
console.log(tx);
} catch (e) {
console.log(e);
}
Live Queries
session.liveQuery("select from V").on("data", data => {
console.log(data);
});
Building from the Source Code
When building from source code, you need to download the driver directly from GitHub, then run NPM against the branch you want to use or test.
Using Git, clone the package repository, then enter the new directory:
$
git clone https://github.com/orientechnologies/orientjs.git
$cd orientjs
When you clone the repository, Git automatically provides you with the current state of the
master
branch. If you would like to work with another branch, likedevelop
or test features on past releases, you need to check out the branch you want. For instance,$
git checkout develop
Once you've selected the branch you want to build, call NPM to handle the installation.
$
npm install
Run the tests to make sure it works:
$
npm test