node.js url module

less than 1 minute read

모듈 추출하기

var url = require('url')

메소드

메소드 역할
parse(urlStr[, parseQueryString=false][, slashesDenoteHost=false]) URL 문자열을 URL 객체로 변환해 리턴
format(urlObj) URL 객체를 URL 문자열로 변환해 리턴
resolve(from, to) 매개변수를 조합해 URL 문자열을 생성해 리턴
var url = require('url');

var parseObj = url.parse('https://github.com/DetegiCE/detegice.github.io/tree/master/_posts/nodejs');
var mergeObj = url.format(parseObj);
console.log(parseObj);
console.log(mergeObj);

스크린샷 2020-09-15 오전 12 37 04

Categories:

Updated:

Comments