HyperFormula comes with a dedicated, regularly-updated documentation portal.
View the documentation's latest production version at https://handsontable.com/docs/hyperformula.
The HyperFormula documentation is built with VuePress, a Vue-powered Static Site Generator.
When editing the docs, you can use features described here.
To start a local HyperFormula docs server:
- Make sure you're running Node.js 14+.
- From the main
hyperformula
directory, install the docs dependencies:npm install
- From the main
hyperformula
directory, build HyperFormula:npm run bundle-all
- From the main
hyperformula
directory, create a dev build of the docs and start your local docs server:npm run docs:dev
- In your browser, go to: http://localhost:8080/hyperformula/.
From the hyperformula
directory, you can run the following npm scripts:
npm run docs:dev
- Starts a local docs server at http://localhost:8080/hyperformula/.npm run docs:build
- Builds the docs output into/docs/.vuepress/dist
.
docs # All documentation files
├── .vuepress # All VuePress files
│ ├── components # Vue components
│ ├── dist # The docs output. Both the docs and the API reference are built into this folder.
│ ├── public # Public assets
│ ├── styles # Style-related files
│ ├── subtheme # Subtheme files
│ ├── templates # HTML templates
│ ├── config.js # VuePress configuration
│ ├── enhanceApp.js # VuePress app-level enhancements
│ └── highlight.js # Code highlight configuration
├── api # The API reference files, generated automatically from JsDoc. Do not edit!
├── guide # The docs source files: Markdown content
├── api-ref-readme.md # The API reference welcome page
├── index.md # The main docs portal welcome page
└── README.md # The file you're looking at right now!