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) - CJS: CommonJS to support old Node
require()
- will possibly be removed in the future - IIFE: standalone script with
ExcelBuilder
available on the window
object
import { createWorksheet } from 'excel-builder-vanilla';
const { createWorksheet } = require('excel-builder-vanilla');
<script src="https://cdn.jsdelivr.net/npm/excel-builder-vanilla@3.0.1/dist/excel-builder.iife.js"></script>
<script>
const worksheet = ExcelBuilder.createWorksheet();
</script>
Changelog
CHANGELOG
LICENSE
MIT License