node package manager

hapi-domainculture

BuildStatus

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 for more examples