This server is useful for helping us test fetch and AJAX calls.
A few endpoints are included which are intended to work together for tests.
All the endpoints accept GET requests and return a JSON object in the format:
{ value: calculatedValue }
or if you give it bad data or a bad route:
{ value: someError }
/double/[number] - returns (2 x number)./tripple/[number] - returns (3 x number)./quad/[number] - returns (4 x number).