Skip to content

ExpressX

NodeJS application framework

Service oriented, isomorphic client, real-time

Back-end = set of services

All back-end operations are abstracted away as services.

Over Express

An ExpressX application is also an Express application, so you can add your favorite middleware.

Isomorphic

You can use the exact same statements in JS on the client or in NodeJS on the server. Client service requests are serialized and sent through the websocket for an execution on the server

Real-time

A single websocket connection between a client and the server is used for transporting requests, responses and events. On completion of a service method, an event is sent back to all subscriber clients.