# 2.10.2
# Installation
You can install this specific version of Crayons
using crayons@2.10.2
# 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@2.10.2/dist/crayons/crayons.esm.js"
integrity="sha384-s4YuQuk29D0hyETFLb1uq0A2PL3kOzeorfdlMGGIOGFS5qcH36fP/PD5q13FqoRt"
></script>
<script
nomodule
src="https://cdn.jsdelivr.net/npm/@freshworks/crayons@2.10.2/dist/crayons/crayons.js"
integrity="sha384-xE3AMjbHPPYJqqo8azAPrQzVPy78gtfUONLXHpRli9/1N4EyBfvnBd8ojpM+OAI/"
></script>
# Usage via Node Modules
- Install the package
npm install @freshworks/crayons@2.10.2 --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 .