fastdom VS proposal-import-attributes

Compare fastdom vs proposal-import-attributes and see what are their differences.

fastdom

Eliminates layout thrashing by batching DOM measurement and mutation tasks (by wilsonpage)

proposal-import-attributes

Proposal for syntax to import ES modules with assertions (by tc39)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
fastdom proposal-import-attributes
4 8
6,779 548
- 3.1%
2.9 5.9
3 months ago 3 months ago
JavaScript HTML
- Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

fastdom

Posts with mentions or reviews of fastdom. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-02.
  • If Web Components are so great, why am I not using them?
    12 projects | news.ycombinator.com | 2 Aug 2023
    Now, every time we read `offsetHeight`, the browser sees that it has a scheduled DOM modification to apply, so it has to apply that first, before it can return a correct value.

    This is the reason that libraries like fastdom (https://github.com/wilsonpage/fastdom) exist - they help ensure that, in a given tick, all the reads happen first, followed by all the writes.

    That said, I suspect even if you add a write followed by a read to your `while(1)` experiment, it still won't actually render anything, because painting is a separate phase of the rendering process, which always happens asynchronously. But that might not be true, and I'm on mobile and can't test it myself.

  • TodoMVC App Written in Vanilla JavaScript
    9 projects | news.ycombinator.com | 7 May 2022
  • Notes on the Critical Rendering Path (CRP)
    1 project | dev.to | 25 Apr 2022
    batching your writes & reads to the DOM (via FastDOM or a virtual DOM implementation).
  • Performance tips for JavaScript Game Developers
    1 project | /r/incremental_games | 23 Apr 2021
    For more information on how and why this works, and a more robust and complete implementation, check out the FastDom library: https://github.com/wilsonpage/fastdom - note that you might not need this particular optimization if you're using a rendering framework, which should already be doing these sorts of optimisations for you.

proposal-import-attributes

Posts with mentions or reviews of proposal-import-attributes. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-24.
  • Power of Partial Prerendering with Bun
    2 projects | dev.to | 24 Mar 2024
    Bun introduces the idea of Macros into JavaScript. Macros are a new paradigm that allows optimizations ahead of time just by adding an import attribute.
  • How to use import attributes in TypeScript and JavaScript
    1 project | dev.to | 9 Jan 2024
    TypeScript v5.3 builds on its JavaScript foundation by adding import attributes with the usual type safety and tooling benefits inherent to the language. You can follow the TypeScript proposal for import attributes on GitHub.
  • CSS Modules Still a Thing?
    2 projects | /r/css | 7 Dec 2023
    Yup, in vanilla that's fine, but I'm not sure whether bundlers etc are able to understand import assertions yet, as the spec is still being finalised - for example: the 'assert' keyword has now been officially changed to 'with', but only 'assert' is implemented anywhere at the moment.
  • If Web Components are so great, why am I not using them?
    12 projects | news.ycombinator.com | 2 Aug 2023
    Things like HTML (and JSON) imports in ES modules, among other things, have been waiting on some safety signalling mechanics currently named "Import Attributes". Import Attributes are currently in Stage 3 [0].

    The basic security story is that browsers never care about file extensions, they care about MIME types. A developer might add an import to a third-party HTML or JSON file somewhere and expect one "safe" behavior, but the third-party could just return a MIME type of "text/javascript" and inject an entire script and the browser is supposed to respect that MIME type.

    To keep things safe, browsers want a way to signal that an import is supposed to JSON (or HTML or CSS) rather than JS and error if it gets back something "wrong" from a server request. That's one of the proposed uses for Import Attributes to suggest expected MIME types for non-JS modules in ES module imports.

    Unfortunately, there are other proposed uses for Import Attributes (things like including hashes for integrity checks) and so there have been quite a few revisions (and multiple names) for Import Attributes trying to best support as many of the proposed uses as possible, and that has slowed progress on it a lot more than some people would wish.

    [0] https://github.com/tc39/proposal-import-attributes

  • [Showoff Saturday] Replacing Abandoned Dependencies
    2 projects | /r/webdev | 24 Jun 2023
    This was an idea that I came up with when thinking about how to handle import styles from './styles.css' with { type: 'css' } in @shgysk8zer0/rollup-import. Import assertions / import attributes are now back to stage 3, but only JSON is actually progressing. So I decided to wait until there's a stable spec.
  • Rails Frontend Bundling - Which one should I choose?
    5 projects | dev.to | 22 May 2023
  • The Cost of Convenience
    2 projects | dev.to | 4 May 2023
    None of these examples will actually work in a browser, because they are non-standard. Some of you might have correctly spotted that a browser standard exists for two of the imports pointed out in the example, namely the Import Attributes proposal (previously known as Import Assertions), but these imports in their current shape will not work natively in a browser. Many of these non-standard imports exist for good reason; they are very convenient.
  • Updates from the 95th TC39 meeting
    7 projects | dev.to | 23 Mar 2023
    import attribute: Import Assertions re-adanced to Stage-3. Proposal for syntax to import ES modules with assertions

What are some alternatives?

When comparing fastdom and proposal-import-attributes you can also consider the following projects:

mebm - zero-dependency browser-based video editor

proposal-class-method-parameter-decorators - Decorators for ECMAScript class method and constructor parameters

react-gradual-upgrade-demo - Demonstration of how to gradually upgrade an app to a new version of React

unpkg - The CDN for everything on npm

yhtml - Tiny html tag function for rendering Web Component templates with event binding

proposal-float16array - a proposal to add float16 TypedArrays to JavaScript

uibuilder - Typed HTML templates using TypeScript's TSX files

proposal-await-dictionary - A proposal to add Promise.ownProperties(), Promise.fromEntries() to ECMAScript

custom-elements - Using custom elements

custom-elements-everywhere - Custom Element + Framework Interoperability Tests.