# eee **Repository Path**: yangyingchao/eee ## Basic Information - **Project Name**: eee - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-02-25 - **Last Updated**: 2026-02-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Excel to SQLite 将 Excel 文件内容导入 SQLite 数据库的 Electron 桌面应用。 ## 环境要求 - Node.js 18+ - npm 9+ ## 安装依赖 ```bash npm install ``` ## 开发运行 ```bash npm start ``` ## 打包 ```bash # 打包当前平台 npm run build # 打包指定平台 npm run build:win # Windows npm run build:mac # macOS npm run build:linux # Linux ``` 打包完成后,生成的文件在 `dist` 目录下: - `dist/linux-unpacked/` - 解压后的应用目录 - `dist/Excel to SQLite-1.0.0.AppImage` - Linux AppImage 安装包 ## 运行打包后的应用 ### Linux AppImage ```bash chmod +x "./dist/Excel to SQLite-1.0.0.AppImage" ./dist/Excel\ to\ SQLite-1.0.0.AppImage ``` ### 解压版本 ```bash ./dist/linux-unpacked/excel-to-sqlite ``` ## 使用方法 1. 点击"选择 Excel 文件"按钮 2. 在弹出的文件对话框中选择 xlsx 或 xls 文件 3. 数据将自动导入到 SQLite 数据库,保存路径为: - Linux: `~/.config/excel-to-sqlite/data.db` - macOS: `~/Library/Application Support/excel-to-sqlite/data.db` - Windows: `%APPDATA%\excel-to-sqlite\data.db`