Installation

Installing via npm

To install the latest stable version of weas that has been released to npm:

$ npm install weas

Then import the weas module in your JavaScript files:

import { WEAS } from 'weas';

Using weas from a URL

Alternatively, if you prefer to include weas directly in your HTML files without installing the package through npm, you can use the URLs provided below.

JavaScript Module:

Add the following script tag to your HTML:

<script type="module" src="https://unpkg.com/weas/dist/weas.mjs"></script>

CSS Stylesheet:

Include this link to the CSS file in the <head> section of your HTML document:

<link rel="stylesheet" href="https://unpkg.com/weas/dist/style.css">