Webpack loader that imports and parses .xlsx files into a workbook object compatible with the xlsx npm module. Version 1.0.0 is the initial release with no active development since 2016. It transforms xlsx files into a JSON representation (SheetNames and Sheets) that can be directly consumed by xlsx utility functions. Differentiated by simplicity: just a loader with no extra configuration required. Alternatives include raw xlsx import with file-loader or manual parsing.
npm install webpack-xlsx-loaderNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Configures webpack to load xlsx files, then imports a spreadsheet and converts first sheet to CSV.
Use a modern replacement like @softarc/xlsx-loader or raw xlsx with asset modules.
Run npm install xlsx separately.
Use MiniCssExtractPlugin or avoid loaders that intercept pitch.
Add webpack-xlsx-loader to webpack config as shown in usage.
Run npm install xlsx.
Use import spreadsheet from './file.xlsx' not import { SheetNames } from './file.xlsx'.No dependency data recorded yet.