É seguro usar require("path").join
para concatenar URLs, por exemplo:
require("path").join("http://example.com", "ok");
//returns 'http://example.com/ok'
require("path").join("http://example.com/", "ok");
//returns 'http://example.com/ok'
Caso contrário, de que maneira você sugeriria isso sem escrever um código cheio de ifs?
path.posix.join('/one/two/three', 'four') // '/one/two/three/four
, path.posix.join('/one/two/three/', 'four') // '/one/two/three/four
,path.posix.join('/one/two/three/', '/four') // '/one/two/three/four
path.posix.join('http://localhost:9887/one/two/three/', '/four')
, a junção se livrar de uma das barras duplas nahttp://
'http://localhost:9887/one/two/three/'.replace(/^\/+|\/+$/, '') + '/' + '/four'.replace(/^\/+|\/+$/, '')
e você poderia fazer String.prototype.trimSlashes = function() { return this.replace(/^\/+|\/+$/, ''); }
se você não deseja digitar a expressão regular e outra vez. stackoverflow.com/a/22387870/2537258
['http://localhost:9887/one/two/three/', '/four'].map((part) => part. replace(/^\/+|\/+$/, '')).join('/')