Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Converts the response to csv based on the Joi response schema when the Accept header includes text/csv
or application/csv
or the requested route ends with .csv
npm install --save hapi-csv
Register the hapi-csv plugin on the server
server.register({
register: require('hapi-csv'),
options: {
maximumElementsInArray: 5,
separator: ',',
resultKey: 'items'
}
}, function (err) {
if (err) throw err;
...
});
When you have a route on which a response schema is defined, like in the example below, the plugin will convert the response to csv when the Accept header includes text/csv
or application/csv
or the requested route ends with .csv
const routes = [{
method: 'GET',
path: '/users',
handler: Users.getAll,
config: {
response: {
schema: Joi.object().keys({
first_name: Joi.string(),
last_name: Joi.string(),
age: Joi.number()
})
}
}
}]
Either do GET /users
with header Accept: text/csv
or Accept: application/csv
.
Or do GET /users.csv
.
The header approach is preferred.
When the request path ends in .csv
the .csv
part will be stripped and the accept header will be set to text/csv
.
Currently the Content-Disposition
header is set to attachment;
by default since this plugin is intended for exporting purposes, if this hinders you just let us know.
To handle typical pagination responses pass the resultKey
option. The value is the top level key you want to convert to csv.
// paginated response
{
"page": 1,
"items": [
{ "name": "Anton", "age": 22 },
{ "name": "Lisa", "age": 25 }
]
}
server.register({
register: require('hapi-csv'),
options: {
resultKey: 'items' // We only want the `items` in csv
}
}, function (err) {
if (err) throw err;
...
});
Hapi-csv supports dynamic response schemas as well.
Imagine one of your property's schema is dynamic but you still want to export the value of it to csv.
You can tell hapi-csv to translate a given key on the fly when it is converting the response to csv (onPreResponse
).
On the route config set the plugin config to an object like
{
'keyPath': (request, callback) => {
return callback(/* Error, Joi schema */)
}
}
The key is the path of the property you want to resolve dynamically. E.g.
Joi.object().keys({
a: Joi.object(),
b: Joi.object().keys({
c: Joi.object()
})
})
If you want to convert a
the key would be a
.
For c
it would be b.c
.
Full example:
server.route([{
...,
config: {
...,
response: {
schema: Joi.object().keys({
first_name: Joi.string(),
last_name: Joi.string(),
age: Joi.number(),
custom: Joi.object(),
deepCustom: Joi.object().keys({
deepestCustom: Joi.object()
})
})
},
plugins: {
'hapi-csv': {
'custom': (request, callback) => {
const schema = Joi.object().keys({
id: Joi.number(),
name: Joi.string()
});
return callback(null, schema);
},
'deepCustom.deepestCustom': (request, callback) => {
return callback(new Error('nope'));
}
}
}
}
])
You can also enable Excel conversion:
server.register({
register: require('hapi-csv'),
options: {
enableExcel: true,
excelWriteOptions: { /* compression: false */ }
}
}, ...
excelWriteOptions
takes anything for https://github.com/SheetJS/js-xlsx#writing-options
FAQs
Hapi plugin for converting a Joi response schema and dataset to csv
The npm package hapi-csv receives a total of 81 weekly downloads. As such, hapi-csv popularity was classified as not popular.
We found that hapi-csv demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.