frontexpress
frontexpress copied to clipboard
An Express.js-Style router for the front-end
Can it work in ie9
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...