TypeORM

https://typeorm.io/#/ TypeORM is an ORM that can run in NodeJS, Browser, Cordova, PhoneGap, Ionic, React Native, NativeScript, Expo, and Electron platforms and can be used with TypeScript and JavaScript (ES5, ES6, ES7, ES8). Its goal is to always support the latest JavaScript features and provide additional features that help you to develop Leggi tutto…

Glossario

End-to-End (E2E) Testing End-to-end testing is a technique that tests the entire software product from beginning to end to ensure the application flow behaves as expected. It defines the product’s system dependencies and ensures all integrated pieces work together as expected. End-to-end testing versus system testing Comparing end-to-end testing and Leggi tutto…

5 Misconceptions About Asynchronous Code in JavaScript

https://medium.com/young-coder/5-misconceptions-about-asynchronous-code-in-javascript-ebad2738766 …Promises run when created, not awaited.You could solve the problem by getting each promise and combining them into one with Promise.all(). But that’s not even necessary. All you need to do is let each Promise object be created, at which point the code begins running. If you do that, Leggi tutto…