
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
IMPORTANT: Rieluz is not recommended for production environment yet. This is a work in progress.
Install via npm
npm install rieluz
orientdb: {
connections: {
default: {
server: {
host: '127.0.0.1',
port: 2424,
username: 'orientdbUser',
password: 'orientdbPassword',
servers: [
{host: '127.0.0.1', port: 2425}
]
},
database: {
name: 'databaseName',
username: 'orientdbUser',
password: 'orientdbPassword',
type: 'graph',
storage: 'plocal'
}
}
}
}
IMPORTANT Every connection configuration is similar to the OrientJS configuration schema.
Can be specify as many connection as needed. Every connection is identify by its name.
By every connection declared in configuration is set an instance of the GraphManager.
import { connect } from 'rieluz';
rieluz.connect(config)
.catch(e => console.error(`Error connecting to orientdb: ${e.message}`));
This is the way of boot connections to OrientDB database. If database is not created, Rieluz will create the database and the declared models schema.
Let's create a person model
import { Schema, Vertex } from 'rieluz';
const personSchema = Schema({
id: {
type: 'string',
index: 'UNIQUE_HASH_INDEX'
},
name: {
type: 'string'
},
age: {
type: 'integer'
}
});
export default Vertex('Person', personSchema, 'default');
For the schema validation was used validate node js package. Read more
The third parameter is the connection that model will use. If it is not specified rieluz will take 'default'
| Rieluz Type (same as OrientDB) | Javascript |
|---|---|
| decimal | number |
| float | number |
| integer | number |
| double | number |
| short | number |
| date | object |
| datetime | object |
| string | string |
| boolean | boolean |
IMPORTANT The properties type must be declared as one of the types above
let jimmy = new Person({ id: "1", name: "Jimmy", age: 21 });
if (jimmy.isValid()) {
jimmy.save()
.then(vertex => console.log(vertext))
.catch(e => console.error(`Error saving: ${e.message}`));
} else {
console.log(jimmy.schema.errors);
}
jimmy.delete()
.then(result => console.log('Node removed'))
.catch(e => console.error(`Error removing node: ${e.message}`));
Every model have a property collection that can be used.
let data = { id: "1", name: "Jimmy", age: 21 };
Person.collection.create(data)
.then(vertex => console.log(vertex))
.catch(e => console.error(`Error creating node: ${e.message}`));
The node will be updated if it already exist in the database otherwise will be created
let data = { id: "1", name: "Jimmy", age: 21 };
Person.collection.upsert(data)
.then(vertex => console.log(vertex))
.catch(e => console.error(`Error updating node: ${e.message}`));
createEdge takes 4 arguments:
Person.collection.createEdge('friend_of', jimmy.rid, joe.rid)
.then(edge => console.log(edge))
.catch(e => console.error(`Error creating relationship: ${e.message}`));
Person.collection.deleteEdge('friend_of', jimmy.rid, joe.rid)
.then(count => console.log(`Total relationships removed: ${count}`))
.catch(e => console.error(`Error removing relationship: ${e.message}`));
To remove all edges between one node and other, no matter its class, pass null or undefined as class parameter
Person.collection.deleteEdge(null, jimmy.rid, joe.rid)
.then(count => console.log(`All relationships removed: ${count}`))
.catch(e => console.error(`Error removing relationships: ${e.message}`));
Person.collection.findOne({ id: "1" })
.then(vertex => console.log(vertex))
.catch(e => console.error(`Error finding the node: ${e.message}`));
Person.collection.query("select from person where id = :id", { id: "1" })
.then(results => console.log(results))
.catch(e => console.error(`Error querying: ${e.message}`));
Use qb in the same way that object db in OrientJS
let qb = Person.collection.getQueryBuilder();
Please let me know about any bug or recommendation in here
FAQs
Just another OGM for OrientDB
We found that rieluz demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.