🚀 Big News:Socket Has Acquired Secure Annex.Learn More
Socket
Book a DemoSign in
Socket

excel-builder-vanilla

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

excel-builder-vanilla

An easy way of building Excel files with javascript

latest
Source
npmnpm
Version
5.0.0
Version published
Weekly downloads
5.4K
-15.87%
Maintainers
1
Weekly downloads
 
Created
Source

Excel-Builder-Vanilla

Documentation

📘 Documentation website powered by GitBook

Live Demo

Available Live demo which displays a rough WYSIWYG (What You See Is What You Get) idea of all available options/methods.

Installation

npm install excel-builder-vanilla

The project only offers 1 bundle type

  • ESM: to import from (preferred)
// ESM - npm install
import { createWorksheet } from 'excel-builder-vanilla';

Basic Usage

import { downloadExcelFile, Workbook } from 'excel-builder-vanilla';

const originalData = [
  ['Artist', 'Album', 'Price'],
  ['Buckethead', 'Albino Slug', 8.99],
  ['Buckethead', 'Electric Tears', 13.99],
  ['Buckethead', 'Colma', 11.34],
];
const artistWorkbook = new Workbook();
const albumList = artistWorkbook.createWorksheet({ name: 'Artists' });
albumList.setData(originalData);
artistWorkbook.addWorksheet(albumList);

downloadExcelFile(artistWorkbook, 'Artist WB.xlsx');

Changelog

CHANGELOG

LICENSE

MIT License

Major Changes

version 3.0

  • initial release (forked from original excel-builder library)

version 4.0

  • build as ESM-Only and drop CJS (CommonJS) build (aka require())

version 5.0

  • drop the legacy IIFE build and the use of window object (typically used when loading as the legacy <script>).

Keywords

excel

FAQs

Package last updated on 04 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts