npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

hapi-csv

v6.0.0

Published

Hapi plugin for converting a Joi response schema and dataset to csv

Downloads

535

Readme

hapi-csv Build Status

What

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. Converts the response to xlsx (Excel) with the enableExcel option when the Accept header includes application/vnd.openxmlformats-officedocument.spreadsheetml.sheet or the requested route ends with .xlsx.

How

npm install --save hapi-csv

Register the hapi-csv plugin on the server

await server.register({
    plugin: require('hapi-csv'),
    options: {
        maximumElementsInArray: 5,
        separator: ',',
        resultKey: 'items'
    }
});

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.

Paginated responses

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 }
    ]
}
await server.register({
    plugin: require('hapi-csv'),
    options: {
        resultKey: 'items' // We only want the `items` in csv
    }
});

Dynamic schemas

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': async (request) => {

        return JoiSchema;
    }
}

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) => {

                    const schema = Joi.object().keys({
                        id: Joi.number(),
                        name: Joi.string()
                    });

                    return schema;
                },
                'deepCustom.deepestCustom': (request) => {

                    throw new Error('nope');
                }
            }
        }
     }
 ])

Excel

You can also enable Excel conversion. It will convert the response to xlsx (Excel) when the Accept header includes application/vnd.openxmlformats-officedocument.spreadsheetml.sheet or the requested route ends with .xlsx.

await server.register({
    plugin: require('hapi-csv'),
    options: {
        enableExcel: true,
        excelWriteOptions: { /* compression: false */ }
    }
});

excelWriteOptions takes anything for https://github.com/SheetJS/js-xlsx#writing-options