Skip to content

Commit 95ed5e8

Browse files
committed
change command & readme
1 parent 4620684 commit 95ed5e8

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
# FastExcel
22

3+
> This project using [Neon](https://neon-bindings.com) as a binding to Rust to execute fast and efficient memory usage for generating XLSX document.
4+
5+
### Installation
6+
7+
npm i fastexcel
8+
39
### Example
410

511
```
12+
const fs = require('fs');
13+
const { CsvFileWriter, Converter } = require("fastexcel");
14+
615
// Part 1: Put Data to CSV/Text
716
const writer = new CsvFileWriter("./test/source-lib.csv", [
817
"No",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
88
"build-debug": "npm run build --",
99
"build-release": "npm run build -- --release",
10-
"install": "npm run build-release",
10+
"project:install": "npm run build-release",
1111
"rs:test": "cargo test",
1212
"js:test": "jest --runInBand"
1313
},

0 commit comments

Comments
 (0)