const arangojs = require("arangojs");
const db = new arangojs.Database({
url: "http://localhost:8529"
});
const collection = db.collection("users");
const user = {
name: "John",
age: 30
};
collection.save(user);
collection.all().then(result => {
console.log(result);
}).catch(error => {
console.error(error);
});