Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

excel-builder-vanilla

Package Overview
Dependencies
Maintainers
1
Versions
19
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
4.1.1
Version published
Weekly downloads
3.7K
-6.77%
Maintainers
1
Weekly downloads
 
Created
Source

Excel-Builder-Vanilla

Documentation

📘 Documentation website powered by GitBook

Live Demo

Available Live demo which displays all available options/methods.

Installation

npm install excel-builder-vanilla

The project offers 3 different bundle types, choose the best for your use case

  • ESM: to import from (preferred)
  • IIFE: standalone script with ExcelBuilder available on the window object
// ESM - npm install
import { createWorksheet } from 'excel-builder-vanilla';

// IIFE - CDN
<script src="https://cdn.jsdelivr.net/npm/excel-builder-vanilla@4.0.1/dist/excel-builder.iife.js"></script>
<script>
  const worksheet = ExcelBuilder.createWorksheet();
</script>

Basic Usage

import { Workbook, downloadExcelFile } 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

Keywords

excel

FAQs

Package last updated on 27 Sep 2025

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