Interested in sponsoring the site? [find out more]
Using https cdn imports with Jest tests in JavaScript
TLDR: use moduleNameMapper to support https
CDN imports in Jest.
I’m currently refactoring my application AnyWayData.com and I needed to mix cdn imports with node install includes for testing with jest.
How to Release a Chrome Extension to the Chrome Store
Writing a Chrome Extension is pretty easy (getting it in the Chrome Store is much harder!). In this post I describe the steps to release an extension.
Automating Calculator From Console
I was asked how I might go about automating an online calculator application. I have a calculator app of my own so I was interested in comparing the two apps and experimenting with a canvas based JS App.
Automate Playing Tic Tac Toe online game using JavaScript from the browser console.
TLDR; Study examples of automating a game in browser using JavaScript from the dev tools console, and an example of automating outside the browser using a standalone execution tool.
Tips For Learning JavaScript
TLDR; A lot of good resources for learning JavaScript exist. And you do not need to install an IDE, you can learn JavaScript in the console.
An Introduction to API Based Documentation Automating
TLDR; The formal api documentation specifications ecosystems have tools that can help create documentation more easily and use the documentation to automatically validate e.g. Dredd, Swagger and StopLight
I’m working on an API for The Pulper, and I want to write documentation in a formal spec and use tools to validate it. Sounds Easy.
How to write a link checker in the browser with Vanilla JavaScript
TLDR; A simple link checker running from a snippet or console has some secondary advantages like jumping to the links and showing CSP and CORB errors
How to Write a Chrome Extension from JavaScript Snippets code
Writing a Chrome Extension is pretty easy (getting it in the Chrome Store is much harder!). In this post I will take the snippet code I wrote to generate CounterStrings and convert it into a Chrome Extension.
Hacking JavaScript Games - Accessing private javascript variables at runtime via debugging
I like to write little bots from the console to help with with application and game automation. But when the variables and objects I need are created from within anonymous functions I can’t get access. In this post I will explain how to access them.
How to Practice your JavaScript, Software Testing and Test Automation
One way I practice my Software Testing, improve my JavaScript programming and practice my automating is by ‘hacking’ JavaScript games.