url-utils
v0.1.2
Published
An implementation of Location as described by MDN. Useful for emulating window.location on the server side.
Downloads
32
Maintainers
Readme
npm-url-utils
Node.js - An implementation of URLUtils as described by MDN. Useful for emulating window.location on the server side.
See MDN documentation: https://developer.mozilla.org/en-US/docs/Web/API/URLUtils
Example (using express.js)
npm install url-utils
app.get('*', function(req, res){
/*>*/ var URLUtils = require('url-utils');
var window = {
/*>*/ location: new URLUtils(
/*>*/ req.protocol + '://' + req.get('host') + req.originalUrl
/*>*/ )
};
/*>*/ console.log( window.location.href ); // "http://mywebsite.com/index.jsx?foo=bar#myhash"
/*>*/ console.log( window.location.protocol ); // "http:"
/*>*/ console.log( window.location.hash ); // "#myhash"
});