JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q54807F
  • License MIT

instant interactivity for the web

Package Exports

  • @voxjs/vox

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@voxjs/vox) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

vox.js

instant interactivity for the web

Vox is a tiny (<10KB) JavaScript library that allows you to enhance your HTML with declarative two-way data bindings, using simple, native-like attributes.

FEATURES

  • data binding + event handling;
  • declarative code;
  • reactive (powered by @vue/reactivity);
  • easy to learn;
  • small and mighty!

🚀 Setup

For more detailed instructions, please read the docs.

<script src="vox.min.js"></script>

<div vox="{ world: [ '🌏', '🌍', '🌎' ] }">
  Hello, <span vox:text="world.join(' ')"></span>!
</div>

<script>
  const app = vox();
  app.init();
  // ...that's all, folks!
  app.exit();
</script>

📚 Documentation

Documentation is available @ wiki.

🌈 Contributing

All contributions (feedback included) are welcome! 🙌