REST Clients
To assist with evaluation and one-off operations, the following sample REST clients with source code are available:
DeltaJSON-Java-CLI
Sample Java command-line driver can be used to experiment with DeltaJSON REST API - https://bitbucket.org/deltaxml/deltajson-java-cli/src/master/
The provided sample command-line driver can be used to experiment using REST from the command-line.
The command-line driver is not intended as a primary way of interacting with it.
The client defaults to http://localhost:8080
but this can be changed by using the host
property.
For example, if the REST service is running on port 1234 instead of 8080:
java -jar -Dhost=http://localhost:1234 deltajson-client.jar
DeltaJSON_TypeScript_API
A sample nodejs/typescript client that consumes the DeltaJSON REST API - https://bitbucket.org/deltaxml/deltajson_typescript_api/src/master/