Web Tools #430 - JS Libraries, React Tools, Uncats

Web Tools Weekly
WEB VERSION
Tools for Web Developers

Issue #430 • October 14, 2021

Advertisement
Retool - Build Internal Tools 10x Faster
Retool gives you a powerful set of building blocks: tables, lists, charts and more. Integrate with any datasource, REST API, gRPC, or Firebase and customize your app with JS. Save hundreds of hours.

Try Retool for Free
Retool

The DOM API includes another interesting method that I just stumbled across that's relatively new to the spec: Element.replaceWith(). In brief, this method allows you to replace an element with a new element and any children nested inside it. It also accepts a DOM string.

Here's some code demonstrating three different ways to use it:

// replacing element with element
par1.replaceWith(par2);

// replacing element with text
par1.replaceWith('Some example text');

// replacing element with tags as escaped strings par1.replaceWith('<div>More example text</div>');

You can try a real interactive example in this CodePen demo. It will help to look at the code to see what's happening, but note a few things about the three ways you can replace the main paragraph element in the code above and the demo:

  • The lone argument passed into replaceWith() can be a single HTML element object with optional nested children. Those child elements will be preserved. So technically you're passing in a node tree.
  • When passing in a DOM string, you wrap the argument with quotes or pass it in as a previously defined string object. Again, the full string will replace the element so that the original element completely disappears.
  • My last example in the code above includes HTML tags in the string value. These won't be recognized as tags but will be escaped as part of the string to display on the page. You can try this using the interactive demo by entering HTML characters or other special characters in the input field.
  • In the live demo, notice the paragraph being replaced also has a child element (for the italics). This element also disappears when the parent is replaced.
And that's pretty much all there is to this method. It's handy because it's much like innerHTML() but instead of replacing the child elements of the targeted element, it replaces the element directly while passing in any accompanying children.


Now on to this week's tools!
 

 

JavaScript Libraries and Frameworks

Retool - Build Internal Tools 10x Faster
Retool gives you a powerful set of building blocks: tables, lists, charts and more. Integrate with any datasource, REST API, gRPC, or Firebase and customize your app with JS. Save hundreds of hours. sponsored 

Imba
Not exactly a JS library, but a new web language that compiles to JS that features speed via a time-saving syntax and memoized DOM.

Vizzu
A free, open-source JavaScript library for creating static data charts and animated data stories and visualizations.

Motion One
A new performance-first animation library built on the Web Animations API and includes features like selectors, individual transforms, timeline sequencing, and more.

Mechanic
An open source framework that makes it easy to create custom, web-based design tools that export design assets right in your browser.

Theatre.js
A JavaScript animation library with a GUI that that animates the DOM, WebGL, and any other JavaScript variable. Some nice examples on the home page.

Theatre.js

Mafs
A library of React components to build interactive, animated math-based visualizations with declarative code.

Wasp
A language for building and deploying modern full-stack web apps with less code. Describe high-level features with Wasp then write the rest of your logic in React, Node.js and Prisma.

Ultra
A web framework based on Deno and React, with no build or bundle, that embraces modern native browser features like ES Modules, Import Maps, and Web Streams.

Blockly
A library for teaching code concepts that allows web and mobile apps to include a visual code editor for any of the five supported programming languages.

Cornerstone
JavaScript library to easily build interactive medical imaging web applications.

On the Release Radar:

React Tools

Tech Jobs for Good
Tech Jobs for Good helps connect developers to job opportunities at organizations working on pressing issues such as improving educational outcomes, eliminating barriers to mental health, and providing pro bono legal services to those in need. Find out how you can use React to make a difference today.  sponsored 

react-horizontal-scrolling-menu
Horizontal scrolling menu component for React.

react-monacoeditor
React component for the popular Monaco embeddable code editor (which is the engine that powers VS Code).

React Carousel Minimal
Easy to use, responsive, and customizable carousel component for React projects.

React Image Pan, Zoom & Rotate
A React library to add provide rotate, zoom, drag, pan, move, etc., functionality to an image on the page.

kbar
React component to add a fast, portable, and extensible CMD+K interface to your site.
 
kbar

react-hook-form-jsonschema
Lightweight project that exposes an API for easily creating customizable forms with built-in validation based on a JSON Schema.

react-stickynode
A performant and comprehensive React component to add a sticky element to a page.

react-model
A next-generation state management library for React with support for TypeScript, Class and Hooks API, and compatible with Preact, React Native , and Next.js.

Filemanager
A React-based file manager component for the browser and Node.js.

react-tracking
Declarative tracking and analytics for React apps, built by the NY Times open-source team.

react-apple-signin-auth
Apple sign-in for React using the official Apple JS SDK.

React Social Login Buttons
A simple package to provide a front-end for social login buttons using React, on top of already-existing functionality for auth/login.

On the Release Radar:

The Uncategorizables

Tech Jobs for Good
Use Tech Jobs for Good to find front-end developer jobs at organizations working on pressing issues such as fighting misinformation online, improving access to social services, and reducing carbon emissions.  sponsored 

Xplorer
A customizable, modern, and cross-platform File Explorer built with Electron and available for Mac, Windows, and Linux.

Cryptomator
A free and open-source cloud encryption tool for Dropbox that creates a "vault" for your cloud files.

Leapp
An open-source, cross-platform app designed to manage and secure your cloud credentials in multi-account environments.

Featurebase
Capture, organize and analyze what your users have to say through public feedback boards to make better product decisions.

Docbloc
API documentation tool that simplifies the creation and distribution of REST API documentation.
 
Docbloc

Fake Word Generator
Might come in handy if you're trying to come up with a new name for a product service. Even lets you 'mutate' words to see related results.

Gust
A WordPress theme built with Tailwind CSS.

btop
A Linux system resource monitor with support for Mac in development.

Waydroid
A container-based approach to boot a full Android system on a regular GNU/Linux system like Ubuntu.

WCAGify
Node utility for people who need to reference the Web Content Accessibility Guidelines frequently and are tired of copying and pasting.

KDL
A document language with XML-like semantics that looks like you're invoking a bunch of CLI commands.
 

Commercial Apps and Classifieds

These are commercial (non-free) tools, paid classifieds, and affiliate links. You can submit a link for consideration or you can buy a classified link (will be marked "ad").

SlashApi - Web platform to build REST APIs fast with no coding.

Frontendor UI Library  - Library of 100+ UI Blocks & 6+ Templates. ad 

Mini Course Generator - Build and share interactive mini-courses.

JavaScript E-Books Bundle - 3 JS/DOM E-Books 50% off at AppSumo. ad 

ProtectPDF.io - Service to add piracy protection to PDF e-books.

All-in-one Domain Tools - Mac/Win/Linux app for domain checking, etc.
 

A Tweet for Thought

Wes Bos recently started an interesting thread that indirectly tackles the apparent disdain that a lot of devs have towards PHP. He makes a good point, that we ridicule PHP but then we get excited when features PHP has had for years get added to our own 'modern' tech stack.

A Tweet for Thought
 

Send Me Your Tools!

Made something? Send links via Direct Message on Twitter @WebToolsWeekly (details here). No tutorials or articles, please. If you have any suggestions for improvement or corrections, feel free to reply to this email.
 

Before I Go...

StackOverflow Copilot is one of the more humorous projects you'll come across. There's a reason "Don't" is step 1 in the installation instructions.

Thanks to everyone for subscribing and reading!

Keep tooling,
Louis
@WebToolsWeekly

Support this newsletter:
PayPal.me  Patreon / GitHub Sponsors  E-Books / Buy Me a Coffee

Older messages

Web Tools #429 - Frameworks, SVG, React Tools

Thursday, October 7, 2021

Web Tools Weekly WEB VERSION Issue #429 • October 7, 2021 Advertisement Retool - Build Internal Tools 10x Faster Retool gives you a powerful set of building blocks: tables, lists, charts and more.

Web Tools #428 - React Auth, CSS Tools, Bundlers, Angular

Thursday, September 30, 2021

Web Tools Weekly WEB VERSION Issue #428 • September 30, 2021 The following intro is a paid product review for Userfront, a developer-friendly service to add user authentication to your React apps. If

Web Tools #427 - JS Utilities, Jamstack/CMS's, VS Code

Thursday, September 23, 2021

Web Tools Weekly WEB VERSION Issue #427 • September 23, 2021 Advertisement Free Guide: The Evolution of JavaScript Tooling Frameworks and libraries have been created to ease the burden of writing

Web Tools #426 - Learning Tools, Frameworks, Testing, Uncats

Thursday, September 16, 2021

Web Tools Weekly WEB VERSION Issue #426 • September 16, 2021 Advertisement Free Guide: The Evolution of JavaScript Tooling Frameworks and libraries have been created to ease the burden of writing

Web Tools #425 - CSS Tools, Media/SVG, React

Thursday, September 9, 2021

Web Tools Weekly WEB VERSION Issue #425 • September 9, 2021 Advertisement Free Guide: The Evolution of JavaScript Tooling Frameworks and libraries have been created to ease the burden of writing

You Might Also Like

⚙️ Your own Personal AI Agent, for Everything

Saturday, November 23, 2024

November 23, 2024 | Read Online Subscribe | Advertise Good Morning. Welcome to this special edition of The Deep View, brought to you in collaboration with Convergence. Imagine if you had a digital

Educational Byte: Are Privacy Coins Like Monero and Zcash Legal?

Saturday, November 23, 2024

Top Tech Content sent at Noon! How the world collects web data Read this email in your browser How are you, @newsletterest1? 🪐 What's happening in tech today, November 23, 2024? The HackerNoon

🐍 New Python tutorials on Real Python

Saturday, November 23, 2024

Hey there, There's always something going on over at Real Python as far as Python tutorials go. Here's what you may have missed this past week: Black Friday Giveaway @ Real Python This Black

Re: Hackers may have stolen everyone's SSN!

Saturday, November 23, 2024

I wanted to make sure you saw Incogni's Black Friday deal, which is exclusively available for iPhone Life readers. Use coupon code IPHONELIFE to save 58%. Here's why we recommend Incogni for

North Korean Hackers Steal $10M with AI-Driven Scams and Malware on LinkedIn

Saturday, November 23, 2024

THN Daily Updates Newsletter cover Generative AI For Dummies ($18.00 Value) FREE for a Limited Time Generate a personal assistant with generative AI Download Now Sponsored LATEST NEWS Nov 23, 2024

📧 Building Async APIs in ASP.NET Core - The Right Way

Saturday, November 23, 2024

​ Building Async APIs in ASP .NET Core - The Right Way Read on: m​y website / Read time: 5 minutes The .NET Weekly is brought to you by: Even the smartest AI in the world won't save you from a

WebAIM November 2024 Newsletter

Friday, November 22, 2024

WebAIM November 2024 Newsletter Read this newsletter online at https://webaim.org/newsletter/2024/november Features Using Severity Ratings to Prioritize Web Accessibility Remediation When it comes to

➡️ Why Your Phone Doesn't Want You to Sideload Apps — Setting the Default Gateway in Linux

Friday, November 22, 2024

Also: Hey Apple, It's Time to Upgrade the Macs Storage, and More! How-To Geek Logo November 22, 2024 Did You Know Fantasy author JRR Tolkien is credited with inventing the main concept of orcs and

JSK Daily for Nov 22, 2024

Friday, November 22, 2024

JSK Daily for Nov 22, 2024 View this email in your browser A community curated daily e-mail of JavaScript news React E-Commerce App for Digital Products: Part 4 (Creating the Home Page) This component

Spyglass Dispatch: The Fate of Chrome • Amazon Tops Up Anthropic • Pros Quit Xitter • Brave Powers AI Search • Apple's Lazy AI River • RIP Enrique Allen

Friday, November 22, 2024

The Fate of Chrome • Amazon Tops Up Anthropic • Pros Quit Xitter • Brave Powers AI Search • Apple's Lazy AI River • RIP Enrique Allen The Spyglass Dispatch is a free newsletter sent out daily on