Javascript Archives - ArangoDB https://arangodb.com/category/javascript/ The database for graph and beyond Wed, 26 Jun 2024 10:11:00 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.1 https://arangodb.com/wp-content/uploads/2023/08/cropped-favicon-32x32.png Javascript Archives - ArangoDB https://arangodb.com/category/javascript/ 32 32 ArangoJS 6.0.0 released: Load Balancing, Automated Failover and completely written in TypeScript https://arangodb.com/2018/01/arangojs-6-released-load-balancing-failover-typescript/ https://arangodb.com/2018/01/arangojs-6-released-load-balancing-failover-typescript/#comments Fri, 12 Jan 2018 16:23:54 +0000 https://www.arangodb.com/?p=24257 Version 6.0.0 of the JavaScript driver arangojs is now available (Find it on GitHub). This is a major release that introduces a small number of breaking changes so make sure to check out the arangojs changelog before upgrading. The most significant additions in this release are support for load balancing and automated failover as well as improved browser…

The post ArangoJS 6.0.0 released: Load Balancing, Automated Failover and completely written in TypeScript appeared first on ArangoDB.

]]>
https://arangodb.com/2018/01/arangojs-6-released-load-balancing-failover-typescript/feed/ 1
ArangoJS 4 Alpha: Available Now for Testing https://arangodb.com/2015/09/arangojs-4-alpha-available-now/ https://arangodb.com/2015/09/arangojs-4-alpha-available-now/#respond Tue, 01 Sep 2015 14:54:53 +0000 http://www.arangodb.com/?p=8568 The first alpha of the official JavaScript driver arangojs‘ upcoming major release is now available on npm. Version 4 streamlines the driver’s API by removing unnecessary server roundtrips to obtain references to collections and graphs that already exist: Before: var db = require('arangojs')(); db.collection('users') .then(function(collection) { return collection.import(allTheUsers) }) .then(function() { return db.collection('blogs') }) .then(function(collection)…

The post ArangoJS 4 Alpha: Available Now for Testing appeared first on ArangoDB.

]]>
https://arangodb.com/2015/09/arangojs-4-alpha-available-now/feed/ 0
ArangoDB JavaScript Driver 3.7: Promises & Performance https://arangodb.com/2015/05/arangodb-javascript-driver-3-7-promises-and-performance/ https://arangodb.com/2015/05/arangodb-javascript-driver-3-7-promises-and-performance/#comments Wed, 13 May 2015 13:57:25 +0000 http://www.arangodb.com/?p=7566 ArangoJS, the official ArangoDB JavaScript client, has been updated to version 3.7.0. The new release features significant performance improvements in Node.js and io.js. The dependency on the third-party request module has been replaced with a thin wrapper around node’s own http module, bringing a 3-4x performance improvement for consecutive requests by maintaining a connection pool.…

The post ArangoDB JavaScript Driver 3.7: Promises & Performance appeared first on ArangoDB.

]]>
https://arangodb.com/2015/05/arangodb-javascript-driver-3-7-promises-and-performance/feed/ 1
AQB Update: Write More Readable Queries with ArangoDB https://arangodb.com/2015/04/aqb-updated-write-more-readable-queries/ https://arangodb.com/2015/04/aqb-updated-write-more-readable-queries/#respond Mon, 20 Apr 2015 07:37:24 +0000 http://www.arangodb.com/?p=7366 The latest update to the AQL Query Builder for JavaScript addresses a major pain point: the “prefix notation” or LISP style syntax of AQL operator methods. Instead of calling the operator methods on the query builder object itself, you can now directly call them as methods on value objects. Let’s say you want to write…

The post AQB Update: Write More Readable Queries with ArangoDB appeared first on ArangoDB.

]]>
https://arangodb.com/2015/04/aqb-updated-write-more-readable-queries/feed/ 0
Exploring More ES6 Features: ArangoDB Insights https://arangodb.com/2015/02/more-es6-features/ https://arangodb.com/2015/02/more-es6-features/#respond Thu, 26 Feb 2015 12:47:23 +0000 http://www.arangodb.com/?p=6716 ArangoDB 2.5 comes with an upgraded version of V8, Google’s open source JavaScript engine. The built-in version of V8 has been upgraded from 3.29.54 to 3.31.74.1. In addition to several already usable ES6 features (detailed in this blog, the following ES6 features are activated in ArangoDB 2.5 by default: iterators and generators template strings enhanced…

The post Exploring More ES6 Features: ArangoDB Insights appeared first on ArangoDB.

]]>
https://arangodb.com/2015/02/more-es6-features/feed/ 0
Building a self-learning game with ArangoDB, io.js & AngularJS in half a day. https://arangodb.com/2015/01/angularjs-build-in-half-a-day/ https://arangodb.com/2015/01/angularjs-build-in-half-a-day/#respond Tue, 27 Jan 2015 13:30:39 +0000 http://www.arangodb.com/?p=6287 With the ArangoDB Foxx Microservice Framework we’ve introduced an easy way to create a Web API right on top of the NoSQL database. In early January Max challenged Andreas (AngularJS / NodeJS) that they could build a full-stack application within half a day. The web application – in short – is a guessing game, in…

The post Building a self-learning game with ArangoDB, io.js & AngularJS in half a day. appeared first on ArangoDB.

]]>
https://arangodb.com/2015/01/angularjs-build-in-half-a-day/feed/ 0
Crawling GitHub with Promises: ArangoDB Tutorial https://arangodb.com/2015/01/crawling-github-promises/ https://arangodb.com/2015/01/crawling-github-promises/#comments Tue, 06 Jan 2015 11:08:55 +0000 http://www.arangodb.com/?p=5967 The new Javascript driver no longer imposes any promises implementation. It follows the standard callback pattern with a callback using err and res. I wanted to give the new driver a try. A github crawler seemed like a good side-project, especially because the node-github driver follows the same conventions as the Javascript driver. There are…

The post Crawling GitHub with Promises: ArangoDB Tutorial appeared first on ArangoDB.

]]>
https://arangodb.com/2015/01/crawling-github-promises/feed/ 2
ArangoDB Query Builder: Simplifying Database Queries https://arangodb.com/2014/12/arangodb-query-builder/ https://arangodb.com/2014/12/arangodb-query-builder/#comments Sat, 13 Dec 2014 16:12:54 +0000 http://www.arangodb.com/?p=5714 The most powerful way to query your data in ArangoDB is by using ArangoDB’s own query language, AQL. In the past using AQL in your JavaScript code sadly would often require writing long, unwieldy strings. This made writing complex queries difficult and could often lead to subtle syntax errors or mistakes. The ArangoDB Query Builder…

The post ArangoDB Query Builder: Simplifying Database Queries appeared first on ArangoDB.

]]>
https://arangodb.com/2014/12/arangodb-query-builder/feed/ 1
Handling Binary Data in Foxx: ArangoDB Tutorial https://arangodb.com/2014/10/handling-binary-data-foxx/ https://arangodb.com/2014/10/handling-binary-data-foxx/#respond Wed, 15 Oct 2014 17:00:22 +0000 http://www.arangodb.com/?p=4938 Handling binary data in JavaScript applications is a bit tricky because JavaScript does not provide a data type for binary data. This post explains how to use binary data in JavaScript actions written using ArangoDB’s Foxx. String vs. binary data Internally, JavaScript strings are sequences of 16 bit integer values. Furthermore, the ECMAScript standard requires…

The post Handling Binary Data in Foxx: ArangoDB Tutorial appeared first on ArangoDB.

]]>
https://arangodb.com/2014/10/handling-binary-data-foxx/feed/ 0
Cheerio with Node.js and CoffeeScript | ArangoDB Tutorial https://arangodb.com/2014/02/cheerio-node-coffee-script/ https://arangodb.com/2014/02/cheerio-node-coffee-script/#comments Tue, 11 Feb 2014 13:40:07 +0000 http://www.arangodb.com/?p=3323 Foxx’ main purpose is to create a beautiful API for your AngularJS, EmberJS or Backbone.js front-end. However, sometimes you want to do more. We, for example, needed to parse some HTML files. ArangoDB is capable of using some Node.js modules, but unfortunately Cheerio was not one of those. One problem was that we did not…

The post Cheerio with Node.js and CoffeeScript | ArangoDB Tutorial appeared first on ArangoDB.

]]>
https://arangodb.com/2014/02/cheerio-node-coffee-script/feed/ 2