Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

get_excel

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

get_excel

Vanilla JS utility functions for daily website usage

  • 1.1.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Webserver Requirments for js module

The webserver needs to serve .mjs files, for apache you can add and .htaccess file

Apache

<IfModule mod_mime.c>
  AddType text/javascript js mjs
</IfModule>

Lighttpd server

mimetype.assign   += ( ".mjs" => "text/javascript" )
mimetype.assign   += ( ".map" => "text/css" )

Read and parse Excel files into array rows

How to use Get_excel

 import { Get_excel } from "node_modules/get_excel/src/index.js";
 document.querySelector("#input").addEventListener("change", function(){
 var e = new Get_excel();
 let arr = await e.get_array(file);
 }, false);

Keywords

FAQs

Package last updated on 28 Apr 2023

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc