BIG
http request 샘플코드
const http = require('http');
http.get('http://www.example.com', (response) => {
// 응답 상태 코드를 출력합니다
console.log(response.statusCode);
// 응답 본문을 읽기 시작합니다
let data = '';
response.on('data', (chunk) => {
data += chunk;
});
// 응답 본문 읽기가 완료되면 출력합니다
response.on('end', () => {
console.log(data);
});
});
LIST
'!!...nodejs' 카테고리의 다른 글
[nodejs] - 예제 02 - * 로 삼각형 그리기( For 문 ) (0) | 2022.12.02 |
---|---|
[nodejs] - 예제 01 - 별표(*) 로 삼각형 그리기( For 문 ) (0) | 2022.12.02 |
[nodejs] - ftp client 구현 샘플 (0) | 2022.10.05 |
[nodejs] - puppeteer 환경 구성하기 (0) | 2020.08.25 |
[nodejs] - 웹 페이지 크롤링 티스토리 개인 관리자 로그인 후 캡쳐 - casperjs 모듈 이용 - (0) | 2017.05.30 |