Package detail

full-url

michaelrhodes595MIT1.0.0

A function that returns the full URL of a request, including the scheme and host.

full, request, url

readme

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