npm.io
1.0.0 • Published 9 years ago

full-url

Licence
MIT
Version
1.0.0
Deps
0
Vulns
0
Weekly
0
Stars
2

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

Keywords