New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

excel-multi

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

excel-multi

Web and node.js spreadsheet library. Supports xlsx, csv, tsv (or any simple delimited file) for now.

latest
Source
npmnpm
Version
0.0.4
Version published
Maintainers
1
Created
Source

Excel.js

Native node.js Excel file parser. Only supports xlsx for now.

Install

npm install excel

Use

var parseXlsx = require('excel');

parseXlsx('Spreadsheet.xlsx', function(err, data) {
	if(err) throw err;
    // data is an array of arrays
});

If you have multiple sheets in your spreadsheet,

parseXlsx('Spreadsheet.xlsx', '2', function(err, data) {
	if(err) throw err;
    // data is an array of arrays
});

MIT License.

Author: Trevor Dixon trevordixon@gmail.com

Contributors:

Keywords

excel

FAQs

Package last updated on 07 Jan 2014

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