Q.js: modern front-end framework for 2026. No build scripts unlike React et al.

3 pointsposted 10 hours ago
by EGreg

1 Comments

EGreg

10 hours ago

It's kind of like if jQuery continued developing until 2026, and competed with Vue, Angular, React, etc.

This is my first release, distilled from our battle-tested open source Qbix Platform, to just be a minimal, unified set of front-end functionality people would need.

You can include it on any website:

  <script type="module" src="https://unpkg.com/@qbix/q.js@1.0.2/dist/Q.minimal.min.js">
Or if you're brave (or on a webpage you don't care about) you can paste this into the console:

  var s = document.createElement('script');
  s.src = 'https://unpkg.com/@qbix/q.js@1.0.1/dist/Q.min.js';
  s.type = 'module'
  document.head.appendChild(s);
Documentation is here:

  https://github.com/Qbix/Q.js
If you want, copypaste the docs into an LLM-powered chatbot and ask it any questions ;-)

What else would you want to see? A playground for developers, with code snippets etc.?