Web Tools #446 - Frameworks, Build Tools, Uncats

Web Tools Weekly
WEB VERSION
Tools for Web Developers

Issue #446 • February 3, 2022

Advertisement
Choosing the Best WYSIWYG Editor for Styling Tables
Tables are perfect for representing data and information in an organized way, and it’s important to choose a WYSIWYG editor that makes the creation and editing experience with these tables simple for the user.

Read for Free!
Froala

Here's a JavaScript operator that's recently new to me: instanceof. Similar to the typeof operator, which returns a string indicating the type of the expression you pass as a parameter, the instanceof operator, according to MDN, "tests to see if the prototype property of a constructor appears anywhere in the prototype chain of an object."

I like David Flanagan's explanation in the latest edition of JavaScript: The Definitive Guide. He says:

"The instanceof operator expects a left-side operand that is an object and a right-side operand that identifies a class of objects. The operator evaluates to true if the left-side object is an instance of the right-side class and evaluates to false otherwise."

A simple example is testing an object that was created with JavaScript's Date() constructor:

let myDate = new Date();

console.log(myDate instanceof Date); // true

As you can see, unlike typeof, and as explained by Flanagan, this operator requires a left-side and right-side to the operator, in addition to the operator itself.

A more customized example, as in the MDN article, would be when you build an object yourself and run a similar check:

function Dog(color, breed, age) {
  this.color = color;
  this.breed = breed;
  this.age = age;
}

let myDog = new Dog('brown', 'Dachshund', 4);
let myCat = 'Morris';

console.log(myDog instanceof Dog); // true console.log(myCat instanceof Dog); // false

You can try out both the above examples using this CodePen demo. When using instanceof, if the left side operand is not an object, the expression will return false but if the right operand is not a class of objects, it will throw a TypeError.

I'll leave this again to Flanagan to explain the mechanism here, as he nicely expounds why MDN's definition mentions the prototype chain:

"To evaluate the expression o instanceof f, JavaScript evaluates f.prototype, and then looks for that value in the prototype chain of o. If it finds it, then o is an instance of f (or of a subclass of f) and the operator returns true. If f. prototype is not one of the values in the prototype chain of o, then o is not an instance of f and instanceof returns false."


Now on to this week's tools!

Front-end Frameworks

Choosing the Best WYSIWYG Editor for Styling Tables
Tables are perfect for representing data and information in an organized way, and it’s important to choose a WYSIWYG editor that makes the creation and editing experience with these tables simple for the user. Read for FREE! sponsored 

AgnosticUI
A set of framework-agnostic UI components that work in React, Vue, Angular, Svelte, or vanilla JavaScript.

PostSrc Tailwind Components
A collection of 50+ Tailwind components divided into about 19 categories of UI elements (cards, alerts, buttons, badges, etc).

Vision UI Free Chakra
A dashboard UI template with 70+ components, built with Chakra UI, the popular accessibility-first React component library.

Wanda
An open-source design system from AI company Wonderflow, with a focus on principles of accessibility and 'form follows function'.

Wanda

package-skeleton
A template to get a project up and running with Typescript, ESLint, Prettier, Jest, esbuild, and includes automated dependency updates.

React Soft Dashboard
An innovative admin template for Material UI and React with a simple JWT auth flow and 70+ elements (buttons, inputs, navigation, tabs, cards, etc).

Next-JS-Landing-Page-Starter-Template
An opinionated starter for building Next.js projects with Tailwind, TypeScript, ESLint, Prettier, Husky, and more.

UI Components Handbook
Not a single library, but a guide to standardize the design and code of UI components, based on the 39 most popular reference systems.

react-native-ecommerce
A minimal React Native e-commerce app template  built with Expo, the cross-platform development kit, with state management via the React Context API and a mock API service for product data.

Next Markdown Blog
A simple static blog template using markdown and Next.js.
 

Build Tools, Bundlers, Deployment, etc.

Build Internal Apps Remarkably Fast with Retool
Retool is a new approach to building internal apps: we’ve unified the ease of visual programming with the power and flexibility of real code. Drag and drop a form together, and have it POST back to your API in minutes. Deploy instantly with access controls and audit logs.  sponsored 

deno_lint
A blazing fast linter for JavaScript and TypeScript, written in Rust. Currently includes 90 rules you can use.

quick-lint-js
A JavaScript linter available as a code editor plugin that claims to be 110x faster than ESLint by giving you instant feedback as you code.

leanup
A generic CLI to develop, test, and build a SPA/PWA independent of any framework.

DevToys
A native Windows app that's a "Swiss army knife" for developers. Works offline and includes 20+ tools – encoders, decoders, converters, hash generation, text diffing, and more.
 
DevToys

Plop
A micro-generator framework that makes it easy for an entire team to create files with a level of uniformity.

parcel-css
From the team behind Parcel, a fast, multi-featured CSS parser, transformer, and minifier written in Rust.

unconfig
A universal solution for loading configurations, to make your tools more generalized across projects and easier to integrate and more flexible.

Turborepo
A high-performance build system for JavaScript and TypeScript codebases that re-imagines build system techniques used by Facebook and Google to remove maintenance burden and overhead.

bramble
A purely functional build system and package manager inspired by NixOS, the Linux package manager.

haya
A dev server and bundler based on esbuild, still in early development and similar in usage to Vite.

On the Release Radar:

The Uncategorizables

Build Internal Apps Remarkably Fast with Retool
Retool is a new approach to building internal apps: we’ve unified the ease of visual programming with the power and flexibility of real code. Drag and drop a form together, and have it POST back to your API in minutes. Deploy instantly with access controls and audit logs.  sponsored 

Marginalia Search
An independent DIY search engine that focuses on non-commercial content, and attempts to show you lesser-known content that mainstream search engines might display.

Unicode Calendar Generator
Includes five different text-only calendars that you can copy and paste.

Reactive Doc
Create interactive documentation with plain text via widgets and code blocks using a simple WYSIWYG editor.

CryptPad
An open-source, self-hostable, and privacy-friendly alternative to Google Drive or MS Office, eight different tools.
 
CryptPad

Contra
An open-source starter wireframe kit for designers (Figma, XD, Sketch, etc.) with more than 150+ components and 50+ ready to use mobile screens.

lohost
Distributed, decentralized, and anonymized local website hosting. A website client that turns your computer into a server so you can publish your website without using a hosting company.

losevka
An open-source, sans-serif + slab-serif, monospace typeface family, designed for writing code, using in terminals, and preparing technical documents.

Natural Docs
A native Windows, Mac, or Linux app that provides readable source code documentation for 20+ programming languages.

Name Lantern
Online tool to generate available domains name suggestions based on a keyword.

setup-new-computer-script
A script to set up a new system for web development on a Mac. It's specific to a particular company's new developer hires, but you might find it useful for your own setup.
 

Commercial Tools and Classifieds

These are affiliate links, paid classifieds, and curated commercial apps (i.e. not free, not open source, limited free plan, etc).

PostHog - Self-hostable product analytics platform.

Nhost - Serverless back end service for web and mobile apps.

vscode.email - Newsletter featuring tips/tools for VS code, coming soon. ad 

WitHub - Instant app search tool for Mac.

Advanced React - React course with 70+ HD videos across 11+ modules. ad 

Shipr - Build and deploy responsive apps to GitHub, Vercel, etc.

CodeToo - Project management SaaS platform for front-end dev teams.
 

A Tweet for Thought

Two definite signs that you're weekend project has gone viral: (1) The NY Times buys you out; and (2) people are crocheting it.

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...

I don't know how I missed this while it was in progress, but you have to check out the results of The Angle Bracket – a Twitter voting competition to determine which HTML tag is best.

Thanks to everyone for subscribing and reading!

Keep tooling,
Louis
@WebToolsWeekly

Support this newsletter:
PayPal.me  Patreon  /  GitHub Sponsors  E-Books  /  $5 Tip  /  $1 Tip

Older messages

Web Tools #445 - Chaotic JS, SVG, Git/CLI, React

Thursday, January 27, 2022

Web Tools Weekly WEB VERSION Issue #445 • January 27, 2022 Advertisement Free Talk with a Data Expert Data is important to your business, but learning about the right tools and best practices is more

Web Tools #444 - CSS Tools, VS Code, React Native

Thursday, January 20, 2022

Web Tools Weekly WEB VERSION Issue #444 • January 20, 2022 The following intro is a paid product review for A Fine Start, a new tab page for Chrome, Firefox, and Edge. Nowadays many developers and

Web Tools #443 - Frameworks, Testing Tools, Uncats (misc. tools)

Thursday, January 13, 2022

Web Tools Weekly WEB VERSION Issue #443 • January 13, 2022 Advertisement How Tempo Got Their Data in Shape High-growth fitness start-up Tempo needed to better organize their data to continue growth.

Web Tools #442 - Git/CLI Tools, SVG Tools, JS Utilities

Thursday, January 6, 2022

Web Tools Weekly WEB VERSION Issue #442 • January 6, 2022 Advertisement The Best Time to Build a Data Stack A data stack is a collection of tools that allow you to efficiently organize and analyze your

Web Tools #441 - The Top Tools of 2021 (part 2)

Thursday, December 30, 2021

Web Tools Weekly WEB VERSION Issue #441 • December 30, 2021 Advertisement Best ETL Tools in 2021 ETL tools allow you to gather all of your data in one organized place for better analysis. Learn about

You Might Also Like

This Week's Daily Tip Roundup

Sunday, May 19, 2024

Missed some of this week's tips? No problem. We've compiled all of them here in one convenient place for you to enjoy. Happy learning! iPhoneLife Logo View In Browser Your Tip of the Day is

Reading Beyond the Hype: Some Observations About OpenAI and Google’s Announcements

Sunday, May 19, 2024

Google vs. OpenAI is shaping up as one of the biggest rivarly of the generative AI era. ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏

Final Reminder: Apple Issues "Update Now Warning"

Sunday, May 19, 2024

I wanted to send a final reminder — if you haven't already updated your iPhone to iOS 17.5, we strongly recommend you do so today. This is also your last chance to get access to our iOS 17.5 In-

Second Brain/Attention/Find Your Books

Sunday, May 19, 2024

Recomendo - issue #411 ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏

Kotlin Weekly #407

Sunday, May 19, 2024

ISSUE #407 19th of May 2024 Hello Kotliners! The Google I/O just finished this week with a huge announcement for us, with Google supporting now Kotlin Multiplatform on Android, and the KotlinConf will

Learn How to Use AI to Reach Your Full Potential, newsletterest1!

Sunday, May 19, 2024

3 Ways AI Can Help Your Writing ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌ ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌ ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌ ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌  ͏ ‌

Software Testing Weekly - Issue 220

Saturday, May 18, 2024

Software Testing Conferences 📚 View on the Web Archives ISSUE 220 May 18th 2024 COMMENT Welcome to the 220th issue! Have you ever been to a testing conference? They're a great way to learn about

📶 Is a Cellular iPad Worth It? — How to Prevent YouTube From Taking Over Your Screensaver

Saturday, May 18, 2024

Also: This Robot Vacuum Can Clean Stairs, and More! How-To Geek Logo May 18, 2024 📩 Get expert reviews, the hottest deals, how-to's, breaking news, and more delivered directly to your inbox by

Weekend Reading — Objection-oriented programming

Saturday, May 18, 2024

This week we find a power-up box, replace GitHub Actions with Maven XMLs, avoid the worst website in the world, revisit RTO policies, “listen” to OpenAI employees, watch our Slack private messages, do

Daily Coding Problem: Problem #1445 [Easy]

Saturday, May 18, 2024

Daily Coding Problem Good morning! Here's your coding interview problem for today. This problem was asked by Jane Street. The United States uses the imperial system of weights and measures, which