Skip to main content

✨ Features

  • Compiler
  • Bundler
  • Live Reloading

💫 Overview

  • After installing, run the following commands to get started.
zuri create my-app
cd my-app
zuri build
zuri dev
  • After running zuri dev, open http://localhost:3000 to see your app.

  • Make changes to the .svelte files in the source folder for live reloading on the browser.

💻 How to install zuri

  • Install the latest version of Deno.
  • Install zuri
deno install --allow-net --allow-read --allow-write --unstable https://deno.land/x/zuri/cli.ts
About Permissions
  • –allow-net: Required for the dev server.
  • –allow-read: Allows zuri to compile svelte files.
  • –allow-write: Allows zuri to write to files it creates during the zuri build process
  • –unstable: Allows the use of Deno’s standard modules which might not be stable yet.
Read more about permissions or stability here

⭐ How to use zuri

  • To create a project, type:
zuri create [project name]
  • To compile, first change directories to the root of the project (cd [project name]) then type:
zuri build
  • To start developing, type:
zuri dev
  • This will start up the development server and will open a websocket listening for any changes to the ./src folder. Upon saving changes, your svelte code will be compiled again and the browser will reload to reflect the changes.