full-url

1.0.0 • Public • Published

full-url

full-url is a function that returns the full URL of a request, including the scheme and host.

Build status

Browser support

Install

npm install full-url

Example

node

var server = require('http').createServer
var url = require('full-url')
 
server(function(request, response) {
  url(request)
  // => http://localhost:1234/[wherever]
  
  response.end()
}).listen(1234)

browser(ify)

var url = require('full-url')
var path = '[wherever]' || '/path/to/resource'
 
url(path)
// => http://whenev.er/[wherever]

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i full-url

Weekly Downloads

383

Version

1.0.0

License

MIT

Last publish

Collaborators

  • michaelrhodes