Server-side installation
The basic steps are very similar to the ones in the client-side installation process.
Install with npm or Yarn
Section titled “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:
$ npm install hyperformulaYarn:
$ yarn add hyperformulaThe package will be added to your package.json file and installed in
the ./node_modules directory.
Then you can just require it:
const { HyperFormula } = require('hyperformula');
// your code