0.0.11 • Published 7 years ago

ts-xlsx v0.0.11

Weekly downloads
10,027
License
MIT
Repository
github
Last release
7 years ago

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.

0.0.11

7 years ago

0.0.10

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago