How to build a web app. A complete guide

July 6, 2022 By Mark Otto Off

A web application (web app) is an application program that is stored on a remote server and made available over the Internet through a browser interface. Web services by definition are web applications, though many, but not all, websites use web applications.  Web applications can…

AWS Amplify UI goes GA

July 6, 2022 By Mark Otto 0

The New Wave of React State Management — It wouldn’t be a complete React Status if there wasn’t something about state management 😁 This (quite lengthy) article gives a sweeping overview, along with some history and opinion on the way, rather than presenting the capabilities…

Celebrating Svelte

July 1, 2022 By Mark Otto Off

🤯 Things looked quiet at first, but this has turned out to be a pretty strong week in terms of releases and things – we’ve even had to push a new Vue release and a new Deno webapp framework to the bottom of the issue!…

Should Node.js support Web Workers?

June 30, 2022 By Mark Otto 0

Working with the File System from Node.js — Dr. Axel seems to be on a bit of a Node kick lately and comes back this week with a particularly deep dive on all things related to working with text files from Node, from simple reading…

React fetch data guide

June 29, 2022 By Mark Otto Off

Fetch data is a basic requirement of practically every React application. There are a variety of ways to fetch data in React, including the built-in Fetch API, Axios, async/await syntax, and others. We’ll look at some of these methods in detail. React components can simply…

A modern React-based HTML email workflow

June 29, 2022 By Mark Otto 0

An MDX, MJML & React Workflow for Building HTML Emails — We know perhaps better than most that creating HTML layouts that work in email clients is.. a tricky job! 😆 While we stay quite old school with our tooling, Josh deftly takes a more…

What’s new in ECMAScript 2022?

June 24, 2022 By Mark Otto Off

❓ If you’re unfamiliar with ECMAScript as a term, it’s the name of the generic, standardized language behind JavaScript implementations, as JavaScript is technically a trademark of the Oracle Corporation. Longer explanation. New Course on Web Components — “Web Components are one of the most…

Top Tools every Software Developer should know in 2022

June 23, 2022 By Mark Otto Off

With the increase in popularity of software development in the market, the adoption of its tools has also increased. Now, programmers prefer to use the right software developer tool while creating a solution for the client as it makes their lives easier. Besides, the right…

Node.js in the stream.

June 23, 2022 By Mark Otto 0

Using Web Streams in Node.js — Streams provide a handy abstraction for cleanly working with streaming data but Web Streams (a.k.a. WHATWG Streams) are a different, more broadly supported beast to classic Node.js streams. Dr. Axel starts from the basics but goes into a lot…