This package has been deprecated

Author message:

since version 0.10.3 of xlsx, it comes with embeded typings

ts-xlsx
TypeScript icon, indicating that this package has built-in type declarations

0.0.11 • Public • Published

ts-xlsx

A working XLSX Library for typescript (Rebuild of the original xlsx): https://github.com/SheetJS/js-xlsx/

Tested to be working with Angular 2!!!

How to install:

All you need to do is to install the library:

    npm install --save ts-xlsx

And then the typings for the library:

    typings install --save --global dt~xlsx

or

    npm install --save @types/xlsx

And then you can use it :)

How to use:

Just import the functions and use them.

/* You can use as namespace: */
import * as XLSX from 'ts-xlsx';
let wb: XLSX.IWorkBook = XLSX.read(...)
/* Or straight forward import */
import { read, IWorkBook } from 'ts-xlsx';
let wb: IWorkBook = read(...)

Example Respository:

if you are having troubles integrating into Angular 2, you can review this Example Repository showing a working usecase of fileDrop.

more documentation is provided by the original author of the library, as this is just a wrapper.

Package Sidebar

Install

npm i ts-xlsx

Weekly Downloads

2,278

Version

0.0.11

License

MIT

Last publish

Collaborators

  • hagai.co