# Installation

# How to install

To use EllJo you need a package manager.

# Npm

npm install elljo

# Yarn

yarn add elljo

# Building

You will also need a build tool which transforms the EllJo Code into plain javascript. At the moment only Vite (opens new window) is supported. To use EllJo with Vite you need to install our vite plugin.

# Npm

npm install --save-dev vite-plugin-elljo

# Yarn

yarn add -D vite-plugin-elljo



To use the vite EllJo loader add the loader to your vite.config.js.

   import elljoLoader from 'vite-plugin-elljo'

    export default {
        plugins: [elljoLoader()]
    }