jsx VS petite-vue

Compare jsx vs petite-vue and see what are their differences.

jsx

The JSX specification is a XML-like syntax extension to ECMAScript. (by facebook)

petite-vue

6kb subset of Vue optimized for progressive enhancement (by vuejs)
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
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
jsx petite-vue
14 67
1,945 8,789
0.2% 0.7%
0.0 0.0
5 months ago 3 months ago
HTML TypeScript
- MIT License
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.

jsx

Posts with mentions or reviews of jsx. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-12.
  • I am having to pass down 8+ props even for simple components. What are some common ways to mitigate this? (Typescript)
    2 projects | /r/reactjs | 12 May 2023
    Svelte syntax? Yes, there is upcoming initiative JSX 2.0 which includes shorthands like that. However, have no idea whether it will be released any time soon. So let's say "this is part of React/JSX 1.0" (shrugging)
  • Why TypeScript is the better JavaScript
    2 projects | dev.to | 7 May 2023
    Inherent support for JSX in the language itself
  • Node.js やReact、ESM、Viteの説明
    7 projects | dev.to | 21 Jan 2023
    JavaScript + HTML(DOM)= JSX
  • Alpine.js
    17 projects | news.ycombinator.com | 13 Jan 2023
    FWIW, the className prop is a React thing not a JSX thing. Other libraries which use JSX will happily accept a plain class prop. The React limitation is abstraction leakage: props are not attributes, they map to DOM properties.

    But to the point that JSX is a DSL, that limitation is specifically because React itself is very tightly coupled to DOM semantics… but JSX explicitly has no built in semantics[1].

    1: First sentence of https://facebook.github.io/jsx/ - “JSX is an XML-like syntax extension to ECMAScript without any defined semantics.”

  • React - Introducing JSX
    2 projects | dev.to | 6 Sep 2022
    JSX stands for 'JavaScript XML' and is a syntax extension for JavaScript. It is used to create DOM elements that are then rendered in the React DOM. Although it looks like HTML, it is actually an XML-like syntax specifically written for use in React. Interestingly, JSX is not valid JavaScript either. JSX needs to be compiled by a tool like Babel to be translated into regular JavaScript that a browser can understand. Put simply, JSX describes what the UI should look like, and React takes care of properly rendering it.
  • Web lagnunages to learn
    3 projects | /r/learnprogramming | 29 Jul 2022
  • My thoughts on Mithril.js
    7 projects | dev.to | 3 May 2022
    Alternatively, you can use JSX syntax (like with React), but then you need build-tools.
  • Incrementally adopting TypeScript in a create-react-app project
    6 projects | dev.to | 11 Jan 2022
    Note: For React component files (JSX) we'll use .tsx to maintain JSX support and for non React files we'll use the .ts file extension. However, if you want you could still use .ts file extension for React components without any problem.
  • Sciter, the 5 MB Electron alternative, has switched to JavaScript
    16 projects | news.ycombinator.com | 30 Dec 2021
    I’m concerned that you’re falling into the same trap here with integrating your own variant of JSX, and mulling over adding more things like hyphens in unquoted object literal keys.

    JSX is popular enough that it’s safe, ECMAScript isn’t going to break it, but your alterations to JSX are already significantly incompatible: you have being equivalent to JSX("input", {"class": "search"}, null), but the JSX everyone else is using has that equivalent to JSX(input.search, {}, null). I’m not certain if your JSX syntax is supposed to be able to be used with React code or anything else that uses JSX syntax, but if yes then it’ll be broken in a significant number of cases so that it’s worse than useless, and if no, well, it’s going to be misleading, and what if JSX did get merged into ECMAScript in some form? Then you’d be incompatible with ECMAScript again.

    Same deal with hyphens in unquoted object literal keys: it’s not part of ECMAScript now, but just because it’d be a syntax error now doesn’t mean it always will be. Decorators in TypeScript are a good example of things going badly wrong even when an extremely popular project is involved.

    I say: if you want to go JavaScript, go JavaScript, maaaaaybe plus standard JSX conforming with <https://facebook.github.io/jsx/>, and no further. Even if what you do is obviously superior, &c. &c. I’d apply the same reasoning on your fork of CSS: you introduced it for a good reason back then, but now it’s just friction, even if it’s a little better in a vacuum (and maybe it is in parts, maybe it isn’t in other parts).

  • Do you think HTML is a programming language
    3 projects | /r/ProgrammerHumor | 24 Dec 2021
    Then it might be time for a pull request which identifies these parts as JSX.

petite-vue

Posts with mentions or reviews of petite-vue. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-03.
  • Best No-Code/Low-Code Frontend Builder
    2 projects | /r/nocode | 3 Jul 2023
  • Show HN: A Lightweight 1.7KB JavaScript Framework
    2 projects | news.ycombinator.com | 9 Apr 2023
    Something similar: https://github.com/vuejs/petite-vue (6kb subset of Vue) but the project seems abandoned.
  • Vue Developers, What Makes It Your Choice?
    2 projects | /r/webdev | 2 Apr 2023
    I started with petite-vue because Vue seemed too large of a file size for my simple projects. Wanting to use Vue but after reading some of the comments, I might go with Svelte.
  • AI will make web development so much easier
    1 project | /r/ProgrammerHumor | 2 Apr 2023
    Like: petite-vue And/or a zero-dependency lightweight state management solution.
  • Little incremental wannabe
    1 project | /r/incremental_games | 25 Mar 2023
    I recommend trying https://github.com/vuejs/petite-vue as a minimalist library for declarative reactive view/model data binding, it could at least halve the code used for generating view
  • A PetiteVue Tutorial - 01 Hello World
    1 project | dev.to | 29 Jan 2023
  • How does Tiktok on iOS Safari play videos with sound?
    1 project | /r/webdev | 25 Jan 2023
    Maybe I’ve spent 5 days on and off researching this. I was able to recreate it perfectly using petite-vue https://github.com/vuejs/petite-vue which is nice, but it does not have all the features I need in Vue3
  • Alpine.js
    17 projects | news.ycombinator.com | 13 Jan 2023
    “petite-vue is indeed intended to fill the gap for progressive enhancement cases where Vue 3 would be too heavy-handed.

    It is not abandoned, but rather it is considered "done" because the scope is well defined. I don't think it needs more features (as that would defeat the purpose of being lean and minimal). If you find yourself needing more than what petite-vue provides, you can either go up to Vue proper, or try https://alpinejs.dev/.

    That said, I should update the README to indicate this more clearly.”

    Github discussion: https://github.com/vuejs/petite-vue/discussions/53

  • Vue SFC's with C# MVC project?
    2 projects | /r/vuejs | 24 Nov 2022
    You might consider doing as much as possible in Razor pages and then use https://github.com/vuejs/petite-vue for any functionality you might (components/interactivity/etc.) need.
  • Using script setup and SFC using Vue over CDN
    2 projects | /r/vuejs | 23 Nov 2022
    As another alternative, you could look at petite-vue if you just want to sprinkle from Vue-like components throughout your site... Doesn't have the full force of vue, but maybe it's enough.

What are some alternatives?

When comparing jsx and petite-vue you can also consider the following projects:

htm - Hyperscript Tagged Markup: JSX alternative using standard tagged templates, with compiler support.

Alpine.js - A rugged, minimal framework for composing JavaScript behavior in your markup.

React - The library for web and native user interfaces.

htmx - </> htmx - high power tools for HTML

joystick - A full-stack JavaScript framework for building stable, easy-to-maintain apps and websites.

Alpine

denoflare - Develop, test, and deploy Cloudflare Workers with Deno.

Svelte - Cybernetically enhanced web apps

prepack - A JavaScript bundle optimizer.

django-vitevue - Manage Vitejs frontends for Django

vite - Next generation frontend tooling. It's fast!

Vue.js - This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core