frontexpress icon indicating copy to clipboard operation
frontexpress copied to clipboard

An Express.js-Style router for the front-end

Results 3 frontexpress issues
Sort by recently updated
recently updated
newest added

Currently, requests are sent through the XMLHttpRequest object. Simplify and make the code more standard by using [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API).

Currently these methods [application.http(Get|Post...)(request, success, failure)](https://github.com/camelaissani/frontexpress/blob/master/docs/api/application.md#httpmethodrequest-success-failure) are provided to make AJAX calls. Unfortunately, those methods force developers to use a custom API for making AJAX calls rather than using the...