Category Archives: JavaScript
August 30, 2021
Block the DOM in order to inspect interactive elements
A very dirty trick to inspect interactive stuff in the browser (works in Chrome and Firefox) by leveraging the debugger.
June 11, 2020
What is Deno?
A 1 minute post about Deno, the new kid in town. Is Node.js safe? Will you need to learn something new soon? Probably.
April 04, 2020
A weather API with Node.js, OvernightJS and TypeScript
While cleaning up my GitHub account I’ve found this little project I made a while ago: a weather API with Node.js, OvernightJS and TypeScript. I was pretty proud of it (it’s 100% TypeScript, there’s automatic documentation, linting and tests), so I said: “Let’s write a post about it”.
August 17, 2018
How to scrape that web page with Node.js and puppeteer
A little tutorial on how to start web scraping with puppeteer, the Node.js library which provides a high-level API to control Chrome or Chromium over the DevTools Protocol.