hapi-domainculture
v2.0.1
Published
Hapijs, domain culture plugin - this plugin will support the different markets and the language
Downloads
6
Readme
hapi-domainculture
Domain Culture for Hapi.js
WHY?
We need to be able to support multi domain and languages
How?
{
register: require('hapi-domainculture'),
options: {
white_list: {
com: {
cultures: ['en-US', 'fr-CA'],
default: 'en-US'
},
commx: {
cultures: ['es-MX', 'en-US'],
default: 'es-MX'
}
}, // white_list is required
query_params: {
culture: 'culturequery', // defaults to "culture"
domain: 'domainquery', // defaults to "domain"
ignore: true // If ignore is true, no queryparams will be checked
},
headers: {
domain: 'domain', // optional, defaults to "domain"
culture: 'culture' // optional, defaults to "Accept-Language"
},
default: 'com' // Default domain to use. required.
}
}
Checkout the test directory for more examples