1.0.3 • Published 5 years ago

js-xlsx-core v1.0.3

Weekly downloads
5
License
GPL-3.0
Repository
github
Last release
5 years ago

JSXlsxCore

xlsx core for javascript,can use in node or browser.

使用JavaScript编写的微软Office Excel格式xlsx数据内核,可以用于node或者现代浏览器。

如果要保存为xlsx文件,需要搭配“xlsx-saver”模块(git/npm)使用。

use in node

shell:

npm i js-xlsx-core

js:

const XlsxCore = require('js-xlsx-core');
const {Book,Sheet} = XlsxCore;
var book = new Book();
var sheet = book.CreateSheet("第一页");
//...

use in browser

shell:

npm i js-xlsx-core

html:

<script src="node_modules/js-xlsx-core/xlsxcore.js"></script>

js:

//xlsxcore.js auto add XlsxCore to window
const {Book,Sheet} = window.XlsxCore;
var book = new Book();
var sheet = book.CreateSheet("第一页");
//...

demo

更多使用方式参看这里

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago