> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zymono.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install Zymono's NPM package on your application

<Steps>
  <Step title="Install NodeJS">
    If you do not have NodeJS installed, you should install it at [https://nodejs.org/en/download](https://nodejs.org/en/download)
  </Step>

  <Step title="Install The Zymono NPM Package">
    In a terminal or shell console, run `npm install zymono`.

    This will install the Zymono API along with its dependencies.
  </Step>

  <Step title="Initate API">
    Add this code to the top our your NodeJS file.

    ```js theme={null}
    const zymono = require("zymono")
    ```
  </Step>
</Steps>
