# Server-side installation

> For full compatibility, the minimum required version of **Node is 13**.
> It is related to the support for ICU. There is a possibility to use
> lower versions of Node but you need to install an additional package
> as the dependency: [`full-icu`](https://github.com/unicode-org/full-icu-npm)

The basic steps are very similar to the ones in the
[client-side installation](client-side-installation.md) process.

## Install with npm or Yarn

You can install the latest version of HyperFormula with popular
packaging managers. Navigate to your project folder and run the
following command:

**npm:**

```bash
$ npm install hyperformula
```

**Yarn:**

```bash
$ yarn add hyperformula
```

The package will be added to your `package.json` file and installed in
the `./node_modules` directory.

Then you can just `require` it:

```javascript
const { HyperFormula } = require('hyperformula');

// your code
```

## Set up your coding agent

HyperFormula ships an official Claude skill and machine-readable docs, so
your AI coding agent can scaffold, configure, and debug HyperFormula
correctly. That applies to a Node.js project as much as to a browser one.
To install the skill in Claude Code, or to point Cursor, GitHub Copilot, or
another agent at the docs, see
[Set up your coding agent](setup-coding-agent.md).