Skip to content

Commit

Permalink
Merge branch 'hotfix/rename-install-command'
Browse files Browse the repository at this point in the history
  • Loading branch information
slaveofcode committed Dec 12, 2022
2 parents 4620684 + 872bed2 commit 2226a13
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
# FastExcel

> This project using [Neon](https://neon-bindings.com) as a binding to Rust to execute fast and efficient memory usage for generating XLSX document.
### Installation

npm i fastexcel

### Example

```
const fs = require('fs');
const { CsvFileWriter, Converter } = require("fastexcel");
// Part 1: Put Data to CSV/Text
const writer = new CsvFileWriter("./test/source-lib.csv", [
"No",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "fastexcel",
"version": "0.1.0",
"version": "0.1.1",
"description": "Fast and efficient large excel file writer",
"main": "dist/index.js",
"scripts": {
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"install": "npm run build-release",
"project:install": "npm run build-release",
"rs:test": "cargo test",
"js:test": "jest --runInBand"
},
Expand Down

0 comments on commit 2226a13

Please sign in to comment.