This file (432B) exceeds the allowed full mode (48 kb) size. The editor full height 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.
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)
| / | Focus search |
| ? | Show this help |
| Esc | Unfocus input |