url-utils

0.1.2 • Public • Published

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"
});

Package Sidebar

Install

npm i url-utils

Weekly Downloads

17

Version

0.1.2

License

none

Last publish

Collaborators

  • swivel