Introduction to Pro Features
Univer’s core framework and many basic features are open source on GitHub, and are licensed under the Apache-2.0 license for free use by individuals and organizations. At the same time, we provide a series of pro features for enterprise users, including:
- Pivot Table
- Import and Export
- Collaborative Editing (including collaborative cursors and history)
- Live Share
and so on, these features will be marked with Pro in the documentation.
Pro features are based on the Univer commercial license agreement, which can be used for free, but there are some restrictions1. If you need to unlock restrictions, you can contact our sales team to purchase a license. You can learn whether you need a license, how to obtain and use a license in the License chapter.
Integrate Pro Features
Install and Run the Server
bash -c "$(curl -fsSL https://get.univer.ai)"
Install and Run the Frontend
Run the following command requires your device has nodejs >= 18
, npm >= 8
and git
installed.
npx degit dream-num/univer-pro-sheet-start-kit univer-pro-sheet-start-kit
cd univer-pro-sheet-start-kit
npm install
npm run dev
If you deploy the server on a different machine, you need to update the server
configuration in vite.config.ts
by changing localhost
to the machine’s IP address.
🎉 Congratulations! You’ve successfully created another Univer project with a server. You can now visit http://localhost:5173/ to experience these pro features.
You can also find the source code for this template at dream-num/univer-pro-sheet-start-kit.
Univer Server
Some pro features require access to the Univer Server, including:
- Import and Export
- Collaborative Editing
- Live Share
Please refer to Server Overview for more information about Univer Server.