Hi Florian,
currently ArangoDB can only communicate with external services via HTTP.
The reason node modules that perform network I/O won't work in Foxx is that while ArangoDB shares the same JS engine as Node (V8) it doesn't offer the same abstractions on top of it.
The only way to make network requests in ArangoDB is using the `org/arangodb/request` module (there is no compatible equivalent of node's http or https modules).
Additionally JavaScript in ArangoDB is always executed synchronously (whereas in Node you typically use callbacks, especially when performing network requests which may incur latency).
Cheers,
Alan