# tools-x **Repository Path**: daoke-admin/tools-x ## Basic Information - **Project Name**: tools-x - **Description**: tools-x - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-20 - **Last Updated**: 2025-05-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
This Node.js application reads Excel files from an input folder, removes a configurable number of rows from the beginning of each file, and saves the modified files to an output folder.
npm install
You can configure the application by editing the config.js file:
rowsToRemove: Number of rows to remove from the beginning of each Excel file (default: 5)inputDir: Directory containing Excel files to process (default: './input')outputDir: Directory where processed Excel files will be saved (default: './output')input folder.npm start
or
node index.js
The processed Excel files will be saved in the output folder.
If you're using the executable version:
input folder next to the executable.output folder next to the executable.If you have an Excel file with 100 rows and set rowsToRemove to 5, the processed file will contain rows 6-100 from the original file.
To build the application as a standalone executable:
# Build for the current platform
npm run build
# Build specifically for Windows
npm run build:win
The executable will be created in the dist folder or as excel-processor.exe in the current directory when using the build:win script.
When distributing the executable:
input and output folders next to the executableconfig.js file next to the executableUsers can then simply place their Excel files in the input folder and run the executable.