https://github.com/du-disk/nodejs-export-excel
Nodejs Export Array to Excel with xlsx
https://github.com/du-disk/nodejs-export-excel
excel-export nodejs simple-example xlsx
Last synced: 3 months ago
JSON representation
Nodejs Export Array to Excel with xlsx
- Host: GitHub
- URL: https://github.com/du-disk/nodejs-export-excel
- Owner: du-disk
- License: mit
- Created: 2022-11-03T14:55:56.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-03T15:50:44.000Z (about 3 years ago)
- Last Synced: 2025-07-13T17:51:28.269Z (6 months ago)
- Topics: excel-export, nodejs, simple-example, xlsx
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nodejs Export Array to excel
> This is a simple example of how to export array to excel using nodejs and xlssx module.
## Installation
```bash
npm install
```
## Setup Directory
```js
...
const OUTPUT = './output'
const FILENAME = 'employees.xls';
...
```
## Usage
```bash
npm start
```
## License
[MIT](https://choosealicense.com/licenses/mit/)