# 3.0.0-beta.9
# Installation
You can install this specific version of Crayons
using crayons@3.0.0-beta.9
# Getting Started
# Usage via CDN
From your app’s root html
file add the following scripts:
<script
type="module"
src="https://cdn.jsdelivr.net/npm/@freshworks/crayons@3.0.0-beta.9/dist/crayons/crayons.esm.js"
integrity="sha384-40g9+EVPpZoeqK+Ctw6bKD7PjGnP0WBpU7bkVSu2mA4cBHkQhTwtgVo6/iSc3Ie4"
></script>
<script
nomodule
src="https://cdn.jsdelivr.net/npm/@freshworks/crayons@3.0.0-beta.9/dist/crayons/crayons.js"
integrity="sha384-P6IqOu1cmgf2fF1TLUBgo1caPfvRLjOQi4MfeH1LKICRjsztqTjHC0XBCBKlGsv8"
></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@freshworks/crayons@3.0.0-beta.9/css/crayons-min.css"
integrity="sha384-9uaLh3lzcqH+XNC/pKp5c7vtu+bwRg+AfPr0qQwuBUbNf17tAcEoSgO6asz4Q1ki"
crossorigin="anonymous"
/>
# Usage via Node Modules
- Install the package
npm install @freshworks/crayons@3.0.0-beta.9 --save
- Put a script tag similar to this
<script src="node_modules/@freshworks/crayons/dist/crayons/crayons.js"></script>
or below to load esm module
<script
type="module"
src="node_modules/@freshworks/crayons/dist/crayons/crayons.esm.js"
></script>
Documentation of all crayons versions can be found here .
Load css utils
<link
rel="stylesheet"
href="node_modules/@freshworks/crayons/css/crayons-min.css"
/>