1.0.0 • Published 7 years ago

full-url v1.0.0

Weekly downloads
125
License
MIT
Repository
github
Last release
7 years ago

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