Home » javascript » Page 22
September 9, 2021
By
Mark Otto
Fauna: A Modern Serverless Data API for Node.js Apps — Fauna combines the schema flexibility that’s provided by document databases with ACID compliant transactions. Quickly integrate Fauna into your applications with our Data API and leave scaling, sharding and all other operations to Fauna. Fauna GitHub…
September 3, 2021
By
Mark Otto
Visual Studio Code August 2021 Released — It always feels odd linking to these as they name releases for the prior month, but new features include automatic language detection, built-in bracket colorization (enabled via editor.bracketPairColorization.enabled), improved terminal glyph rendering, inline hints for JS/TS param names…
September 2, 2021
By
Mark Otto
Deploying a Cloud Spanner-Based Node App — Cloud Spanner is an ‘unlimited scale’ managed relational database service Google offers (and which was spun out of an internal database system Google used for numerous services). This post covers the practicalities of building a simple app with…
August 27, 2021
By
Mark Otto
jsc: My New Best Friend — If you’re on macOS, did you know you don’t need to install Node or Deno to have a JavaScript runtime at the terminal? JavaScriptCore to the rescue. (You need to create a symbolic link or extend your path before the…
August 26, 2021
By
Mark Otto
📋 In case you missed our notice a couple of weeks ago, we took a week off last week but are now back every week till Christmas 🙂 Don’t forget you can always hit reply to recommend things for us to consider for future issues…
August 20, 2021
By
Mark Otto
An Absurd Future for SQL on the Web? — absurd-sql is a project aiming to provide a persistent backend for SQLite on the web. It uses IndexedDB but with sql.js in front so you can use SQLite in a natural but persisted way from webapps.…
August 13, 2021
By
Mark Otto
Vue 3.2 Released — Some new features for single file components, significant perf improvements, and it’s now easy to define native custom elements with defineCustomElement (learn more about this in Vue Components as Custom Elements – this could be a big deal for many). Evan…
August 12, 2021
By
Mark Otto
📋 Node Weekly is taking a little summer vacation next week so we’ll be back for the next time on Thursday, August 26. See you then! 🙂 __ Peter Cooper, editor V8 Release v9.3 — Recent V8 releases have been reasonably lean on new features,…
August 6, 2021
By
Mark Otto
Kid Pix as a JavaScript App — Kid Pix was a drawing program for children released on the Mac in 1989 (here’s a full story about it, if you hadn’t heard of it before). Here’s a JavaScript reimplementation. It saves your work if you go…
August 5, 2021
By
Mark Otto
40+ Node.js Integration Test Best Practices — Component and integration tests are increasingly popular testing techniques for backends. This repository digs into a variety of quick-fire patterns and practices for creating good component tests. There’s also a demo app and examples using Jest, Mocha, Express,…