- json2xls-worker-thread.git
- test
- hand-crafted
- express-test.js
This file ( 432B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
const json2xls = require('../../src')
const express = require('express')
const app = express()
const jsonArr = [
{
foo: 'bar',
qux: 'moo',
poo: 123,
stux: new Date()
},
{
foo: 'bar',
qux: 'moo',
poo: 345,
stux: new Date()
}
];
app.use(json2xls.middleware);
app.get('/', function (req, res) {
res.xls('data.xlsx', jsonArr);
});
app.listen(3000)