Skip to main content

Installation

The Ecstatic package can be installed via npm.

npm install @brochington/ecstatic

You may also use an ESM via the unpkg CDN. Doing this will provide an ecstatic object in the global scope. This is a great option for quick experiments.

<html>
<body>
<script type="module" src="https://unpkg.com/@brochington/ecstatic@0.2"></script>
<script type="module">
const { World } = ecstatic;
// Rest of your app code can go here.
</script>
</body>
</html>