1
0
Fork 0
arangodb/Documentation/Books/Manual/Foxx
Alan Plum 069309a65c
Don't ever use IDs for styling
This nonsense breaks markdown-generated IDs and causes all kinds of trouble. Don't use IDs. Ever.
2016-06-17 17:27:49 +02:00
..
Router More docs 2016-06-15 17:15:20 +02:00
Sessions More docs 2016-06-15 17:15:20 +02:00
Assets.mdpp Consistent docs links 2016-06-14 17:23:30 +02:00
AtAGlance.mdpp More docs 2016-06-15 17:15:20 +02:00
Auth.mdpp
Configuration.mdpp
Context.mdpp More docs 2016-06-15 17:15:20 +02:00
Dependencies.mdpp Consistent docs links 2016-06-14 17:23:30 +02:00
GettingStarted.mdpp Don't ever use IDs for styling 2016-06-17 17:27:49 +02:00
LegacyMode.mdpp Maybe fix the slug 2016-06-17 17:10:37 +02:00
Manifest.mdpp Consistent docs links 2016-06-14 17:23:30 +02:00
Migrating2x.mdpp Expand on pre-2.8 differences 2016-06-17 16:40:36 +02:00
Modules.mdpp Finish GettingStarted.mdpp 2016-06-13 12:54:31 +02:00
OAuth2.mdpp
README.mdpp Split Foxx Anatomy into separate docu page, some minor fixes 2016-06-14 02:19:46 +02:00
Scripts.mdpp
Testing.mdpp
Users.mdpp Consistent docs links 2016-06-14 17:23:30 +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.