Socket
Socket
Sign inDemoInstall

excel-builder-vanilla

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    excel-builder-vanilla

An easy way of building Excel files with javascript


Version published
Weekly downloads
504
increased by11.75%
Maintainers
1
Install size
1.46 MB
Created
Weekly downloads
 

Changelog

Source

3.0.1 (2024-02-11)

Bug Fixes

  • add missing ExcelMetadata interface (8a32a73) - by @ghiscoding
  • add tests folder to npm publish ignore (006e9f8) - by @ghiscoding
  • check input type before calling string match on it (9361aa6) - by @ghiscoding

Readme

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

  1. ESM: to import from (prefered)
  2. CJS: CommonJS to support old Node require() - will possibly be removed in the future
  3. IIFE: standalone script with ExcelBuilder available on the window object
// ESM - npm install
import { createWorksheet } from 'excel-builder-vanilla';

// CJS - npm install
const { createWorksheet } = require('excel-builder-vanilla');

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

Changelog

CHANGELOG

LICENSE

MIT License

Keywords

FAQs

Last updated on 11 Feb 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc