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 your HTML page from one of these sources:
JsDeliver
<script src="https://cdn.jsdelivr.net/npm/zuix-dist"></script>
GitHub
<script src="https://zuixjs.github.io/zuix/js/zuix.min.js"></script>
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:
<script src="js/zuix.min.js"></script>