我正在尝试将一些使用jquery-url的js代码移植到nodejs中。
jquery-url用于以这种方式获取给定URL的主机名:
var host = $.url(url).attr('host');
我的问题是,是否有一个jquery-url的npm包?如果没有,现有的包有什么功能?
提前致谢!
答案 0 :(得分:4)
Node.js已经有了这个版本。请参阅node Documentation。
例如:
var url = require("url");
var host = url.parse('http://user:pass@host.com:8080/p/a/t/h?query=string#hash').host;
console.log(host);