Start playing with zuix.js right away on StackBlitz or you can install the zuix-cli tool to create a new website from the command line.
Creating a new web project using the CLI
# Create a new website project named 'my-new-webapp'
npx zuix new my-new-webapp
A new folder named my-new-webapp will be created containing all files required to run the starter project.
From the new folder we can now start the local server that will watch, build and serve the web application files (by default at http://localhost:8080).
cd my-new-webapp
npx zuix start
Read more about all other zuix
command functionality from zuix-cli
documentation page.
Bare library usage on an existing site
zuix.js can also be used on an existing website project by including the library directly in the HTML page or a JavaScript module:
JsDeliver
<script src="https://cdn.jsdelivr.net/npm/zuix-dist@1.1.13"></script>
or as a module:
<script type="module" src="https://cdn.jsdelivr.net/npm/zuix-dist@1.1.13/js/zuix.module.min.js"></script>
or as a dependency of another module:
// file: my-class.module.js
import 'https://cdn.jsdelivr.net/npm/zuix-dist@1.1.13/js/zuix.module.min.js';
NPM
npm install zuix-dist
then copy the library from node_modules/zuix-dist/js
to your project's js
folder and include it in your HTML page or JavaScript module.