Skip to content

Releases: EvitcaStudio/Pulse

Pulse v1.0.0

04 May 13:10
Compare
Choose a tag to compare

Initial Release

Pulse Module

A plugin that allows you to add event listeners on objects. Have your code called alongside an event!

Installation

ES Module

import { Pulse } from './pulse.mjs';

IIFE (Immediately Invoked Function Expression)

<script src="pulse.js"></script>;
// ...
window.PulseBundle.Pulse;

CommonJS (CJS) Module

const { Pulse } = require('./pulse.cjs.js');

Global Dependency

Pulse relies on the VYLO variable being globally accessible.