CalDOM VS htm

Compare CalDOM vs htm and see what are their differences.

htm

Hyperscript Tagged Markup: JSX alternative using standard tagged templates, with compiler support. (by developit)
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
CalDOM htm
3 42
188 8,556
- -
2.7 0.0
almost 3 years ago 3 months ago
JavaScript JavaScript
MIT License 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.

CalDOM

Posts with mentions or reviews of CalDOM. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-07-17.
  • An agnostic, reactive and minimalist (3kb) JavaScript UI library
    3 projects | news.ycombinator.com | 17 Jul 2021
    Introducing CalDOM, an agnostic, reactive & minimalist (3kb) JavaScript UI library with direct access to native DOM.

    Instead of pulling you into a library-specific magical world, CalDOM let you fully access the DOM directly while keeping the reactivity. A 2-in-1 virtual-DOM & no-virtual-DOM approach if you will.

    So you could take full advantage of native APIs & mix it with other libraries to gain superior performance & flexibility in the development process.

    CalDOM does not require any dependency or tooling. It does not introduce any new syntax. Just pure JS.

    This is the first time I’m publishing something like this. This was a simple jQuery alternative I made myself years ago & kept on improving it slowly. Worked really hard during the last few months to add reactivity and get it to this level.

    Please check it out & let me know what you think, the good, bad & your suggestions to improve it.

    Also, it's great if you could contribute to the project: https://github.com/dumijay/CalDom

  • Introducing CalDOM: An agnostic, reactive & minimalist 3kb UI library
    3 projects | /r/javascript | 17 Jul 2021
    Also, need your help to make it more awesome :) https://github.com/dumijay/CalDom
  • An agnostic, reactive & minimalist (3kb) UI library with direct access to native DOM
    2 projects | dev.to | 16 Jul 2021
    It's great if you could contribute to the project. It's open-source (MIT licenced) & available on GitHub.

htm

Posts with mentions or reviews of htm. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-20.
  • VanJS: A 0.9KB JavaScript UI framework
    15 projects | news.ycombinator.com | 20 Dec 2023
    The preact team also dislikes transpiling jsx so they've developed an alternative using tagged template literals: https://github.com/developit/htm
  • React SSR web-server from scratch
    2 projects | dev.to | 21 Nov 2023
    So getting this to work without bundler magic is very hard. It's not surprising why NextJS is investing in a bundler. Though one thing that really sticks out is how much complexity we add for just miniscule dev ergonomics. Not using JSX and using something like htm would make all this easier (removing the bundler entirely), it's a lot of overhead to avoid a couple of quotes. React should really have a tagged-template mode. Also all of this is indirection is actually bad for dev ergonomics too! One of the reasons I did this is because I'm absolutely sick of magic caches and sorting through code that's been crushed by a bundler into something I don't recognize and can't easily debug. While we can't get rid of this completely (ts/jsx) this preserves the module import graph completely on the client-side making it easy to find things as you are working and preserving line numbers. This obviously is not useful for a production build and there's a lot of work that would need to go in to support both modes over the same code, but it's depressing no tools really work like this for local development.
  • HTML Web Components
    14 projects | news.ycombinator.com | 13 Nov 2023
    You can also do JSX and skip the build step with preact + htm : https://github.com/developit/htm#example
  • Service Worker Templating Language (SWTL)
    4 projects | dev.to | 19 Aug 2023
    While I was able to achieve this fairly easily, the developer experience of manually stitching strings together wasnt great. Being myself a fan of buildless libraries, such as htm and lit-html, I figured I'd try to take a stab at implementing a DSL for component-like templating in Service Workers myself, called Service Worker Templating Language (SWTL), here's what it looks like:
  • Gaseous - Yet Another Games Manager
    3 projects | /r/selfhosted | 10 Jul 2023
    I would however highly recommend https://github.com/developit/htm
  • Create and Hydrate HTML with HTM
    2 projects | news.ycombinator.com | 25 Jun 2023
    I thought the same thing, but apparently "HTM" is a JSX like javascript string template representation of HTML, and it can be found here: https://github.com/developit/htm
  • Anyone using React from just a CDN, barbarian style?
    1 project | /r/reactjs | 28 Feb 2023
    If you're going to do a no-build approach, assume modern JS (so you don't have to transpile the JS syntax). Also, you can use https://github.com/developit/htm as a nearly-identical equivalent to JSX syntax, also without transpiling.
  • Simple Modern JavaScript Using JavaScript Modules and Import Maps
    9 projects | news.ycombinator.com | 16 Feb 2023
    This seems like a case of caring way too much about something that's hardly very different. JSX versus tagged template strings can be incredibly similar to one another.

    The examples in this article are using vanilla template strings to author raw html, but that only misses a couple of nicities JSX has. There are tagged template string libraries like htm[1] that do include some of the few nicities JSX has, but which are actually compatible with the official language.

    [1] https://github.com/developit/htm

  • A few programming language features I’d like to see
    1 project | /r/programming | 19 Jan 2023
    The first one exists in JavaScript and is called Tagged Template Literals. I agree with the author that its a nice feature. It's the perfect construct to use for prepared SQL statements, LINQ-style queries, or reimplementing a JSX-like syntax (see HTM https://github.com/developit/htm).
  • Using React without JSX == no build
    2 projects | dev.to | 4 Jan 2023
    There is however a library that is closer to JSX (HTML-like feel) but yet does not require a build step. htm. HTM uses tagged templates to leverage template literal as native Javascript template strings. If you have not played with tagged templates, I encourage you to check this out, it's a quite powerful feature, that has recently become a part of Javascript.

What are some alternatives?

When comparing CalDOM and htm you can also consider the following projects:

jsdom - A JavaScript implementation of various web standards, for use with Node.js

jsx - The JSX specification is a XML-like syntax extension to ECMAScript.

cash - An absurdly small jQuery alternative for modern browsers.

Preact - ⚛️ Fast 3kB React alternative with the same modern API. Components & Virtual DOM.

pFreak - pFreak is a unit-level 2-in-1 JavaScript benchmarking and testing framework.

esbuild-plugin-alias - esbuild plugin for path aliases

hyperHTML - A Fast & Light Virtual DOM Alternative

babel-plugin-react-html-attrs - Babel plugin which transforms HTML and SVG attributes on JSX host elements into React-compatible attributes

ZzFX - A Tiny JavaScript Sound FX System

vim-jsx-pretty - :flashlight: [Vim script] JSX and TSX syntax pretty highlighting for vim.

s2 - A data-binding function for the DOM.

lit - Lit is a simple library for building fast, lightweight web components.