Skip to content

Instantly share code, notes, and snippets.

@andyvanosdale
Created May 12, 2023 20:23
Show Gist options
  • Save andyvanosdale/df8826fe80cf51d41e730b8665507786 to your computer and use it in GitHub Desktop.
Save andyvanosdale/df8826fe80cf51d41e730b8665507786 to your computer and use it in GitHub Desktop.
excel4node transpilation issue with NPM
#!/usr/bin/env deno run --allow-write
import excel from 'npm:excel4node@1.8.2'
// Here, the program will run indefinitely
const workbook = new excel.Workbook()
// Fix is this line (no `new`):
const workbook = excel.Workbook()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment