1
0
Fork 0
arangodb/Documentation/Books/Manual/Foxx
Alan Plum 4585f300d9
Document dependencies description
2016-11-18 16:06:19 +01:00
..
Migrating2x Fix Foxx Auth link in docs 2016-10-10 17:34:19 +02:00
Router Mention the dotdot changes 2016-11-15 18:07:48 +01:00
Sessions Finalize Sessions/Transports/README.md 2016-06-19 19:26:25 +02:00
Assets.mdpp Fixx Foxx typos and markdown 2016-06-20 22:27:13 +02:00
AtAGlance.mdpp Fixx Foxx typos and markdown 2016-06-20 22:27:13 +02:00
Auth.mdpp Document the OAuth2 module 2016-10-12 16:43:54 +02:00
Configuration.mdpp Port Configuration.md 2016-06-19 23:45:49 +02:00
Context.mdpp Add module.context.createDocumentationRouter 2016-08-19 00:36:08 +02:00
Dependencies.mdpp Document dependencies description 2016-11-18 16:06:19 +01:00
GettingStarted.mdpp Foxx: post route example that accepts an array of objects 2016-09-14 15:09:20 +02:00
GraphQL.mdpp GraphQL! Hype! 🎉 2016-07-12 17:03:44 +02:00
LegacyMode.mdpp Split up Foxx migration docs 2016-06-23 16:09:46 +02:00
Manifest.mdpp Document dependencies description 2016-11-18 16:06:19 +01:00
Modules.mdpp Docs: make examples clearer that require modules, add note about aqlQuery -> aql 2016-07-27 17:11:42 +02:00
OAuth2.mdpp Document the OAuth2 module 2016-10-12 16:43:54 +02:00
README.mdpp Split Foxx Anatomy into separate docu page, some minor fixes 2016-06-14 02:19:46 +02:00
Scripts.mdpp Minor documentation improvements 2016-06-21 14:14:08 +02:00
Testing.mdpp Add chapter on Foxx testing 2016-10-26 15:24:57 +02:00
Users.mdpp Fix auth examples 2016-07-07 13:09:57 +02:00

README.mdpp

!CHAPTER Foxx

Traditionally, server-side projects have been developed as standalone applications
that guide the communication between the client-side frontend and the database
backend. This has led to applications that were either developed as single
monoliths or that duplicated data access and domain logic across all services
that had to access the database. Additionally, tools to abstract away the
underlying database calls could incur a lot of network overhead when using remote
databases without careful optimization.

ArangoDB allows application developers to write their data access and domain logic
as microservices running directly within the database with native access to
in-memory data. The **Foxx microservice framework** makes it easy to extend
ArangoDB's own REST API with custom HTTP endpoints using modern JavaScript running
on the same V8 engine you know from Node.js and the Google Chrome web browser.

Unlike traditional approaches to storing logic in the database (like stored
procedures), these microservices can be written as regular structured JavaScript
applications that can be easily distributed and version controlled. Depending on
your project's needs Foxx can be used to build anything from optimized REST
endpoints performing complex data access to entire standalone applications
running directly inside the database.