Skip to content

Load

To start, you must load Graphane on your HTML page. This is done by adding a script tag pointing to the Graphane file. The easiest and fastest is to use this URL from the CDN:

html
<script src="https://cdn.graphery.online/graphane/1.0.0/composer.js"></script>
Understanding the CDN path

This is the detailed description of each URL part:

https://cdn.graphery.online/graphane/1.0.0/composer.js
|-----|--------------------|--------|-----|-----------|
   |            |               |      |        |-----> filename
   |            |               |      |--------------> version
   |            |               |------------------------------------> package
   |            |----------------------------------------------------> domain
   |-----------------------------------------------------------------> protocol

You can install locally the Graphane package with:

bash
npm i graphane

One of the advantages of Graphane is that it runs dynamically in the browser and does not need heavy compilation or transpilation processes at development time. Any change, adaptation or modification, we can do it directly without other transformations.

Released under the MIT License.