{"id":21512173,"url":"https://github.com/nusr/excel","last_synced_at":"2025-12-29T09:25:24.871Z","repository":{"id":49949783,"uuid":"322881350","full_name":"nusr/excel","owner":"nusr","description":"Online Spreadsheet Editor","archived":false,"fork":false,"pushed_at":"2024-04-15T06:21:28.000Z","size":15164,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-04-21T17:20:11.563Z","etag":null,"topics":["excel","react","spreadsheet","xlsx"],"latest_commit_sha":null,"homepage":"https://nusr.github.io/excel","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nusr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-12-19T15:44:00.000Z","updated_at":"2024-04-27T12:31:43.606Z","dependencies_parsed_at":"2022-09-22T11:31:48.679Z","dependency_job_id":"54eabc42-1e57-493d-b0c6-4ca87aa61cd5","html_url":"https://github.com/nusr/excel","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nusr%2Fexcel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nusr%2Fexcel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nusr%2Fexcel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nusr%2Fexcel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nusr","download_url":"https://codeload.github.com/nusr/excel/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248085716,"owners_count":21045198,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["excel","react","spreadsheet","xlsx"],"created_at":"2024-11-23T22:29:53.679Z","updated_at":"2025-12-29T09:25:24.865Z","avatar_url":"https://github.com/nusr.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Online Collaboration Excel\n\n[![CI](https://github.com/nusr/excel/actions/workflows/main.yml/badge.svg)](https://github.com/nusr/excel/actions/workflows/main.yml)\n[![codecov](https://codecov.io/gh/nusr/excel/branch/main/graph/badge.svg?token=ZOC8RHD3Z1)](https://codecov.io/gh/nusr/excel)\n![GitHub](https://img.shields.io/github/license/nusr/excel.svg)\n![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/nusr/excel.svg)\n\nEnglish | [中文](./README_zh.md)\n\n[Online Demo](https://nusr.github.io/excel)\n\n![Demo](./scripts/demo.gif)\n\n## Installation\n\n```bash\nnpm i --save excel-collab\n```\n\n## Quick Start\n\n1. Create a React app\n\n```bash\nnpm create vite@latest my-app -- --template react-ts\ncd my-app\nnpm i\n```\n\n2. Install the Required Libraries\n\n```bash\nnpm i --save excel-collab\n```\n\n3. Modify the Main File\n\n```ts src/main.tsx\n// src/main.tsx\nimport { createRoot } from 'react-dom/client';\nimport { StrictMode } from 'react';\nimport { Excel } from 'excel-collab';\nimport 'excel-collab/style.css';\n\ncreateRoot(document.getElementById('root')!).render(\n  \u003cStrictMode\u003e\n    \u003cExcel style={{ height: '100vh' }} /\u003e\n  \u003c/StrictMode\u003e,\n);\n```\n\n4. Start the app\n\n```bash\nnpm run dev\n```\n\n## Examples\n\n- [Simple Example](https://stackblitz.com/edit/nusr-excel-simple)\n- [Custom Example](https://stackblitz.com/edit/nusr-excel-custom)\n\n## Collaboration Example\n\n```bash\ngit clone https://github.com/nusr/excel.git\ncd excel\n\nnpm i -g yarn\nyarn\nnpm run start\n```\n\n## Supported Features\n\n- [x] Online Collaboration\n- [x] Create File\n- [x] Change File Name\n- [x] Web Worker parse formulas\n- [x] OffScreenCanvas Render\n- [x] Undo\n- [x] Redo\n- [x] Copy\n- [x] Cut\n- [x] Paste\n- [x] Formulas\n- [x] Font Family\n- [x] Font Size\n- [x] Font Color\n- [x] Fill Color\n- [x] Bold\n- [x] Italic\n- [x] Strike\n- [x] Underline\n- [x] Border\n- [x] Text Vertical Align\n- [x] Text Horizontal Align\n- [x] Text Wrapping\n- [x] Number Format\n- [x] AutoFilter\n- [x] Merge Cells\n- [x] Chart\n- [x] Floating Picture\n- [x] Define Name\n- [x] Insert Row\n- [x] Insert Column\n- [x] Delete Row\n- [x] Delete Column\n- [x] Hide Row\n- [x] Hide Column\n- [x] Row Height\n- [x] Column Width\n- [x] Insert Sheet\n- [x] Delete Sheet\n- [x] Rename Sheet\n- [x] Hide Sheet\n- [x] Unhide Sheet\n- [x] Import XLSX\n- [x] Export XLSX\n- [x] Import CSV\n- [x] Export CSV\n- [x] Dark Mode\n- [x] I18N\n\n## Supported Formulas\n\n### Math\n\n- [x] ABS\n- [x] ACOS\n- [x] ACOSH\n- [x] ACOT\n- [x] ACOTH\n- [x] ASIN\n- [x] ASINH\n- [x] ATAN\n- [x] ATAN2\n- [x] ATANH\n- [x] AVERAGE\n- [x] COS\n- [x] COT\n- [x] EXP\n- [x] INT\n- [x] PI\n- [x] SIN\n- [x] SUM\n\n### Text\n\n- [x] CHAR\n- [x] CODE\n- [x] CONCAT\n- [x] CONCATENATE\n- [x] LEN\n- [x] LOWER\n- [x] SPLIT\n- [x] T\n- [x] TEXT\n- [x] TRIM\n- [x] UNICHAR\n- [x] UNICODE\n- [x] UPPER\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnusr%2Fexcel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnusr%2Fexcel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnusr%2Fexcel/lists"}