process-polyfill.ts in Refly codebase.

This page summarizes the projects mentioned and recommended in the original post on dev.to

SurveyJS: Build JSON-Driven Surveys and Forms with Full Data Control
Add the SurveyJS UI components to your JS app (React/Angular/Vue3). Securely collect and analyze data without sending it to 3rd-party servers. Fully customizable, works with any backend, and ideal for data-heavy apps. Learn more.
surveyjs.io
featured
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
  1. refly

    Vibe Workflow Platform for Non-technical Creators.

    You will find the following code in refly/web/dom-patch.ts

  2. SurveyJS

    SurveyJS: Build JSON-Driven Surveys and Forms with Full Data Control. Add the SurveyJS UI components to your JS app (React/Angular/Vue3). Securely collect and analyze data without sending it to 3rd-party servers. Fully customizable, works with any backend, and ideal for data-heavy apps. Learn more.

    SurveyJS logo
  3. React

    The library for web and native user interfaces.

    // @ts-nocheck - Disable all type checking for this file // Workaround for removeChild and insertBefore errors when // google translate is enabled // See https://github.com/facebook/react/issues/11538#issuecomment-417504600. if (typeof Node === 'function' && Node.prototype) { const originalRemoveChild = Node.prototype.removeChild; Node.prototype.removeChild = function (child) { if (child.parentNode !== this) { if (console) { console.error('Cannot remove a child from a different parent', child, this); } return child; } // biome-ignore lint/style/noArguments: using arguments is simpler return originalRemoveChild.apply(this, arguments); }; const originalInsertBefore = Node.prototype.insertBefore; Node.prototype.insertBefore = function (newNode, referenceNode) { if (referenceNode && referenceNode.parentNode !== this) { if (console) { console.error( 'Cannot insert before a reference node from a different parent', referenceNode, this, ); } return newNode; } // biome-ignore lint/style/noArguments: using arguments is simpler return originalInsertBefore.apply(this, arguments); }; }

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • 停滞不前 - FAV0周刊#023

    12 projects | dev.to | 1 Dec 2024
  • Ask HN: Code copilot that autoloops unit test failures?

    1 project | news.ycombinator.com | 14 Sep 2024
  • I Built a Feature in 1 Hour, Not a Day

    1 project | dev.to | 19 Dec 2025
  • Understanding React Project Structure Created by Vite (Beginner’s Guide)

    1 project | dev.to | 18 Dec 2025
  • Under the hood: React

    1 project | dev.to | 12 Dec 2025

Did you know that JavaScript is
the 4th most popular programming language
based on number of references?