Hequalizer v2.0.0 is distributed as a single JavaScript file that exposes theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/soyleninjs/hequalizer/llms.txt
Use this file to discover all available pages before exploring further.
Hequalizer class on window. There is no bundler requirement, no peer dependencies to satisfy, and no configuration file to create. Pick the delivery method that best fits your stack.
- npm
- CDN (jsDelivr)
- Direct Download
Install Hequalizer from the npm registry with your package manager of choice.After installation, the package directory contains both the full source (
hequalizer.js) and the minified build (hequalizer.min.js). Load whichever file suits your environment by adding a script tag that points into node_modules, or configure your build tool to copy it to your output directory:Hequalizer is authored as a browser-targeted script that assigns the class to
window.Hequalizer. It does not export an ES module or CommonJS module. For npm-based projects, load the file directly via a <script> tag or as a static asset rather than through an import statement.Hequalizer requires no build step of any kind. Include the script tag and the
Hequalizer class is immediately ready to use via window.Hequalizer. There is nothing to compile, bundle, or transpile.Verify the installation
After including the script, open your browser’s developer console and run:"function", Hequalizer is loaded and the class is ready to instantiate. If you see "undefined", double-check that the script tag appears in the HTML before your application code runs.