1
0
Fork 0
arangodb/Documentation/Books/Manual/Foxx
mpv1989 efbc3fe0ac Fix Foxx docs 2017-04-11 15:58:54 +02:00
..
Migrating2x
Router Add Foxx res.type helper 2017-03-15 20:09:27 +01:00
Sessions JWT uses seconds 2017-02-14 19:20:41 +01:00
Assets.mdpp
AtAGlance.mdpp
Auth.mdpp
Configuration.mdpp Fix Foxx docs 2017-04-11 15:58:54 +02:00
Context.mdpp
Cors.mdpp fix cross book links 2017-03-31 15:01:20 +02:00
Dependencies.mdpp Fix Foxx docs 2017-04-11 15:58:54 +02:00
GettingStarted.mdpp
GraphQL.mdpp Allow passing own graphql-sync module to Foxx 2017-02-28 14:47:17 +01:00
LegacyMode.mdpp
Manifest.mdpp
Modules.mdpp
OAuth1.mdpp
OAuth2.mdpp
README.mdpp
Scripts.mdpp
Testing.mdpp
Users.mdpp

README.mdpp

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.