Support shorthand proxy configuration.
Set target = http://www.example.org and proxy everything:
var proxy = proxyMiddleware('http://www.example.org');
// equals: proxyMiddleware('/', {target: 'http://www.example.org'});
Set target = http://www.example.org and context = '/api':
var proxy = proxyMiddleware('http://www.example.org/api');
// equals: proxyMiddleware('/api', {target: 'http://www.example.org'});