Javascript

Create a local unsigned apk
REQUIRED VERSION > 0.58 If you’re in the early stages of developing a react native app or just want a quick and easy way to share an apk with your QA or a client who has an android phone, you can easily generate a debug apk file which is unsigned.
Read More…
Speeding Up Cypress
By caching and restoring cookies, localStorage, and sessionStorage data using the cy.session() command my Cypress tests now run considerably faster.
Read More…
You Can Leave but You Cant Come Back
The Problem The user is part way through completing a form or wizard and then the accidently click a link or trigger back on their browser… 😞 Their progress is lost and you have a frustrated user on you hands.
Read More…
Optional chaining - ?.
Good old undefined properties We’ve all been caught out by undefined properties in JavaScript. Below is a ridiculous example to really highlight the point.
Read More…