CURRENT STATE ▪ Modules are loaded with RequireJS ▪ Monoliths are split into smaller modules ▪ ExtJS is gone in v9 ▪ Introduction of ECMAscript 2015 in v10 ▪ (yes, we dropped support for IE) ▪ Code is generated by TypeScript
SEND A GET REQUEST AND HANDLE RESPONSE const request = new AjaxRequest('https://httpbin.org/json?arg1=4711‘); request.get().then( async function (response) { console.log(await response.resolve()); console.log(response.raw()); }, function (error) { console.log(error.response); } );