Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- MariaDB
- REST
- nodejs
- ${}
- $('input [name=
- it지원
- 자바 로또
- map형태 jsp와 mapper
- bubblesort
- 최대값 최소값
- 전역객체
- container-fluid
- $(document).on
- 포워드 엔지니어링
- gradle 설치
- nodejs http
- cmd mariaDB
- git
- SQL
- 자바 예상문제
- templet
- a href="#" onclick="return false"
- #{}
- git 명령어
- git message
- 유효성
- interface default
- 알고리즘
- BCrypt
- resultType="hashmap"
Archives
- Today
- Total
목록nodejs http (1)
Rubberduck-Debugging
1. HTTP 서버 구동 var http = require('http'); var server = http.createServer(function(req, res) { res.end(‘Hello World’); }).listen(3000); 2. HTTP 요청 (request)-클라이언트 요청 분석-var server = http.createServer(function(req, res){}) req.url : 요청 url, 경로와 쿼리 문자열 req.method : 요청 메소드 req.headers : 요청 메시지의 헤더 req(streamable) : 요청 메시지 바디 등의 요청 정보 파악 3. HTTP 요청 쿼리 문자열 문석-url 모듈 사용var url = require("url");url.pars..
개발자/20181127 교육과정
2019. 1. 7. 11:02