리스펙토링 세미나 - 웹 브라우저 동작 개념, Node.js를 통한 서버 이해, REST APIWooyoung Ko1. 웹 브라우저에서 어떤 일이 일어나는지 이해하기
2. Node.js와 Express를 사용한 로컬 서버 구축 실습
3. REST Api 이해하기
4. Vue.js와 Axios를 사용한 REST Api 실습
Isomorphic JavaScript with NashornMaxime NajimThe document discusses isomorphic JavaScript and the advantages it offers for Java developers, emphasizing its use for building interactive web applications that can run both on the client and server. It covers the evolution of web technologies, the importance of server-side rendering, and the integration of Java with the Nashorn JavaScript engine. The document concludes by highlighting the growing trend of utilizing isomorphic JavaScript in various leading companies to create efficient, maintainable applications.
Node.js 기본Han Jung Hyunnode.js 의 기본이 되는 부분을 정리해놓은 자료 입니다.
시중에 나와있는 서적과 인터넷 자료를 분석 후 기본이 되는 부분만 정리해놓았습니다.
이전 업데이트와 다르게 비동기 모듈, express, heroku 설치, 디버깅 방법이 추가되었습니다.
서버학개론(백엔드 서버 개발자를 위한)SU BO KIM어느 해커쏜에 참여한 백엔드 개발자들을 위한 교육자료
쉽게 만든다고 했는데도, 많이 어려웠나봅니다.
제 욕심이 과했던 것 같아요. 담번엔 좀 더 쉽게 !
- 독자 : 백엔드 개발자를 희망하는 사람 (취준생, 이직 희망자), 5년차 이하
- 주요 내용 : 백엔드 개발을 할 때 일어나는 일들(개발팀의 일)
- 비상업적 목적으로 인용은 가능합니다. (출처 명기 필수)
NODE.JS 글로벌 기업 적용 사례 그리고, real-time 어플리케이션 개발하기John KimNODE.JS 글로벌 기업 적용 사례
그리고, real-time 어플리케이션 개발하기
http://www.microsoftvirtualacademy.com/training-courses/node-js-on-cloud
Isomorphic JavaScript with NashornMaxime NajimThe document discusses isomorphic JavaScript and the advantages it offers for Java developers, emphasizing its use for building interactive web applications that can run both on the client and server. It covers the evolution of web technologies, the importance of server-side rendering, and the integration of Java with the Nashorn JavaScript engine. The document concludes by highlighting the growing trend of utilizing isomorphic JavaScript in various leading companies to create efficient, maintainable applications.
Node.js 기본Han Jung Hyunnode.js 의 기본이 되는 부분을 정리해놓은 자료 입니다.
시중에 나와있는 서적과 인터넷 자료를 분석 후 기본이 되는 부분만 정리해놓았습니다.
이전 업데이트와 다르게 비동기 모듈, express, heroku 설치, 디버깅 방법이 추가되었습니다.
서버학개론(백엔드 서버 개발자를 위한)SU BO KIM어느 해커쏜에 참여한 백엔드 개발자들을 위한 교육자료
쉽게 만든다고 했는데도, 많이 어려웠나봅니다.
제 욕심이 과했던 것 같아요. 담번엔 좀 더 쉽게 !
- 독자 : 백엔드 개발자를 희망하는 사람 (취준생, 이직 희망자), 5년차 이하
- 주요 내용 : 백엔드 개발을 할 때 일어나는 일들(개발팀의 일)
- 비상업적 목적으로 인용은 가능합니다. (출처 명기 필수)
NODE.JS 글로벌 기업 적용 사례 그리고, real-time 어플리케이션 개발하기John KimNODE.JS 글로벌 기업 적용 사례
그리고, real-time 어플리케이션 개발하기
http://www.microsoftvirtualacademy.com/training-courses/node-js-on-cloud
Rhea_MMO_SNG_Convergence_Server_ArchitectureRhea Strike이 PPT 자료는 2013년 4월 24일 넥슨에서 주최한 NDC 13에서 발표한 것입니다.
배포를 위해 수정된 부분들이 있으며 기술 내용의 권리는 드래곤플라이에 있습니다.
※ 2013. 4.26 폰트수정
막하는 스터디 첫 번째 만남 Node.js연웅 조node.js를 처음 접하는 개발자를 위한 스터디 자료입니다.
실습 위주로, 간단한 웹 페이지를 만들어 보는 것을 목표로 하며,
express를 활용하기에 앞서, node.js 기본 API만으로 GET/POST 처리 방식을 알아봅니다.
내용의 깊이가 있지는 않으며, 단지 node.js의 입문을 위한 가벼운 수준으로 내용이 구성되었습니다.
16. 사용자 정의 함수를 이용한
var app = connect()
.use(connect.logger('dev'))
.use(connect.cookieParser('mumble'))
.use(connect.cookieSession({key :
'tracking'}))
.use(clearSession)
.use(trackUser);
17. 사용자 정의 함수를 이용한
function clearSession(req, res, next) {
if ('/clear' == req.url) {
req.session = null;
res.statusCode = 302;
res.setHeader('Location', '/');
res.end();
} else {
next();
}
}
next()는 미들웨어가 현재 요청을 처리 하지 않는경우,
오류가 있는경우