Exact Online API Explorer helps you build Exact Online extensions by enabling you to play with the API.
- Built on the Deno runtime.
- Easy set-up (bring your own API-keys!).
- Has all (non-beta) Exact APIs built-in.
- Remembers your commands.
- Formats the output.
- Install Deno.
- Run the installation command:
deno install --unstable --allow-read=. --allow-write=. --allow-net=0.0.0.0,start.exactonline.nl https://raw.githubusercontent.com/WilcoKruijer/ExactApiExplorer/main/exact_explorer.ts
- Initialize the local SQLite database & run the program:
exact_explorer --migrate=up
- Follow the set-up instructions.
- Enjoy!
- Install Deno.
- Clone this repostiory.
- Initialize the local SQLite database & run the program:
deno run --unstable --allow-read=. --allow-write=. --allow-net=0.0.0.0,start.exactonline.nl --lock lock.json exact_explorer.ts --migrate=up
- Follow the set-up instructions.
The application was tested with Deno version 1.11.5.
and stdlib 0.100.0
. The
following flags are used:
--unstable
: Used to accessDeno.setRaw()
. This means this application might break with future versions of Deno.--allow-read=.
an SQLite database-file is stored in the current working directory, this flag is used to read from it.--allow-write=.
Same as above.--allow-net=0.0.0.0,start.exactonline.nl
During the setup this application temporarily runs a webserver to collect Exact's authorization code. Access to the Exact website is obvious.