{"id":44220357,"url":"https://github.com/nebu1eto/sheetkit","last_synced_at":"2026-04-16T08:03:01.725Z","repository":{"id":337265307,"uuid":"1152662474","full_name":"Nebu1eto/sheetkit","owner":"Nebu1eto","description":"High-Performance SpreadsheetML(.xlsx) Library for Rust and TypeScript","archived":false,"fork":false,"pushed_at":"2026-02-14T09:38:02.000Z","size":2063,"stargazers_count":18,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-14T13:33:57.403Z","etag":null,"topics":["excel","nodejs","rust","spreadsheet","typescript","xlsm","xlsx"],"latest_commit_sha":null,"homepage":"https://sheetkit.dev","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Nebu1eto.png","metadata":{"files":{"readme":"README.ko.md","changelog":null,"contributing":"docs/contributing.md","funding":null,"license":"LICENSE-APACHE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-02-08T08:14:04.000Z","updated_at":"2026-02-14T09:49:44.000Z","dependencies_parsed_at":"2026-02-12T05:08:22.890Z","dependency_job_id":"05437927-3b9e-4be9-aa55-8428caddb294","html_url":"https://github.com/Nebu1eto/sheetkit","commit_stats":null,"previous_names":["nebu1eto/sheetkit"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Nebu1eto/sheetkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nebu1eto%2Fsheetkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nebu1eto%2Fsheetkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nebu1eto%2Fsheetkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nebu1eto%2Fsheetkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nebu1eto","download_url":"https://codeload.github.com/Nebu1eto/sheetkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nebu1eto%2Fsheetkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29473357,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T06:58:05.414Z","status":"ssl_error","status_checked_at":"2026-02-15T06:58:05.085Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","nodejs","rust","spreadsheet","typescript","xlsm","xlsx"],"created_at":"2026-02-10T03:11:59.740Z","updated_at":"2026-04-16T08:03:01.702Z","avatar_url":"https://github.com/Nebu1eto.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SheetKit\n\nExcel(.xlsx) 파일을 읽고 쓰는 Rust 라이브러리. napi-rs를 통한 Node.js 바인딩 지원.\n\n\u003e For the English version, see [README.md](README.md).\n\n\u003e **주의**: SheetKit은 실험적 프로젝트입니다. API가 예고 없이 변경될 수 있습니다. 현재 활발히 개발 중입니다.\n\n## 주요 기능\n\n- .xlsx 파일 읽기/쓰기\n- Rust 코어 + napi-rs 기반 Node.js 바인딩 (Deno, Bun에서도 사용 가능)\n- 셀 조작 (문자열, 숫자, 불리언, 날짜, 수식)\n- 시트 관리 (생성, 삭제, 이름 변경, 복사, 활성 시트)\n- 행/열 조작 (삽입, 삭제, 크기 조정, 숨기기, 아웃라인)\n- 스타일 시스템 (글꼴, 채우기, 테두리, 정렬, 숫자 서식, 보호)\n- 43가지 차트 유형 (3D 지원)\n- 이미지 (11가지 형식: PNG, JPEG, GIF, BMP, ICO, TIFF, SVG, EMF, EMZ, WMF, WMZ)\n- 조건부 서식 (17가지 규칙 유형)\n- 데이터 유효성 검사, 메모, 자동 필터\n- 수식 계산 (110개 이상 함수)\n- 대용량 데이터를 위한 스트리밍 작성기\n- 셀 병합, 하이퍼링크, 틀 고정/분할\n- 페이지 레이아웃 및 인쇄 설정\n- 문서 속성, 통합 문서/시트 보호\n- 피벗 테이블\n- 정의된 이름 (명명된 범위)\n\n## 빠른 시작\n\n**Rust:**\n\n```rust\nuse sheetkit::{CellValue, Workbook};\n\nfn main() -\u003e sheetkit::Result\u003c()\u003e {\n    let mut wb = Workbook::new();\n    wb.set_cell_value(\"Sheet1\", \"A1\", CellValue::String(\"Hello\".into()))?;\n    wb.set_cell_value(\"Sheet1\", \"B1\", CellValue::Number(42.0))?;\n    wb.save(\"output.xlsx\")?;\n    Ok(())\n}\n```\n\n**TypeScript:**\n\n```typescript\nimport { Workbook } from \"@sheetkit/node\";\n\nconst wb = new Workbook();\nwb.setCellValue(\"Sheet1\", \"A1\", \"Hello\");\nwb.setCellValue(\"Sheet1\", \"B1\", 42);\nwb.save(\"output.xlsx\");\n```\n\n## 설치\n\n**Rust** -- `cargo add` 사용 (권장):\n\n```bash\ncargo add sheetkit\n```\n\n또는 `Cargo.toml`에 직접 추가:\n\n```toml\n[dependencies]\nsheetkit = \"0.5.1\"\n```\n\n[crates.io에서 보기](https://crates.io/crates/sheetkit)\n\n**Node.js:**\n\n```bash\n# npm\nnpm install @sheetkit/node\n\n# yarn\nyarn add @sheetkit/node\n\n# pnpm\npnpm add @sheetkit/node\n```\n\n[npm에서 보기](https://www.npmjs.com/package/@sheetkit/node)\n\n### Deno / Bun\n\nSheetKit의 Node.js 바인딩은 [napi-rs](https://napi.rs/)를 사용하며, Node-API를 지원하는 다른 JavaScript 런타임에서도 호환됩니다:\n\n- **Deno**: [`--allow-ffi`](https://docs.deno.com/runtime/fundamentals/security/#ffi-(foreign-function-interface)) 권한 플래그를 통해 napi-rs 네이티브 애드온을 지원합니다.\n- **Bun**: Node-API를 네이티브로 지원합니다. 대부분의 napi-rs 모듈이 [별도 설정 없이 동작합니다](https://bun.com/docs/runtime/node-api).\n\n## 문서\n\n**[문서 사이트](https://sheetkit.dev/ko/)** | [English](https://sheetkit.dev/)\n\n문서 소스 파일은 [docs/ko/](docs/ko/) 폴더를 참조하세요.\n\n## 감사의 글\n\nSheetKit은 Go 언어로 작성된 Excel 라이브러리인 [Excelize](https://github.com/qax-os/excelize)의 구현에서 깊은 영감을 받아 Rust와 TypeScript 생태계를 위해 만들어진 프로젝트입니다. Excelize 팀과 기여자분들의 훌륭한 작업에 깊은 존경과 감사를 표합니다.\n\n## 라이선스\n\nMIT OR Apache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnebu1eto%2Fsheetkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnebu1eto%2Fsheetkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnebu1eto%2Fsheetkit/lists"}