# 3.0.0-beta.13

# Installation

You can install this specific version of Crayons using crayons@3.0.0-beta.13

# 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.13/dist/crayons/crayons.esm.js"
  integrity="sha384-FhkymTLdO+K4xqJ0NsrLxZbpsZAKohdwfAcDRKKUulEIqh8Nly0w7dg8g+7wPxE7"
></script>

<script
  nomodule
  src="https://cdn.jsdelivr.net/npm/@freshworks/crayons@3.0.0-beta.13/dist/crayons/crayons.js"
  integrity="sha384-wAdhuaawlBPM6Pc3Rs84+FqMe7B097Z8HnVn45VjFSYnSqp6s344Ccxs3cl5xO6a"
></script>

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/@freshworks/crayons@3.0.0-beta.13/css/crayons-min.css"
  integrity="sha384-HyWCRhV9hmJj2588Nr3ulcHZDnZFShwdEhG82fjR69h1TWcYbdTZgmX0jqV+F968"
  crossorigin="anonymous"
/>

# Usage via Node Modules

  • Install the package
  npm install @freshworks/crayons@3.0.0-beta.13 --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"
/>