Analyse de l'URL JavaScript, y compris le chemin d'accès

const parseUrl = require('parse-url');
const url = 'git+ssh://[email protected]/path/to/resource.git';
const parsedUrl = parseUrl(url);

console.log(parsedUrl)
Outrageous Ostrich