Skip to content

Instantly share code, notes, and snippets.

@crwang
Created August 20, 2015 15:04
Show Gist options
  • Save crwang/36eb6bd89b132a2d4205 to your computer and use it in GitHub Desktop.
Save crwang/36eb6bd89b132a2d4205 to your computer and use it in GitHub Desktop.
Rendr Get Domain Name
var WebUtils = function() {};
WebUtils = {
getCurrentHost: function(app) {
if (!app) throw 'App is required to get the requested information';
if (app.req) {
// Server
return app.req.headers.host;
} else {
// Client
return window.location.host;
}
}
};
module.exports = WebUtils;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment