Node.js 모듈
Node.js 모듈
Node.js의 모듈이란 무엇인가?
모듈을 javascript라이브러리와 동일하게 간주한다.
응용프로그렘에 포함할 함수 집합이다.
내장모듈
Node.js에 추가 설치업시 사용할 수 있는 매장 모듈세트가 있다.
모듈 포함
모듈을 포함하려면 require()함수를 모듈이름과 함께 사용하면 된다.
var http = require("http");
이제 애플리케이션은 HTTP모듈에 액세스 할 수 있으며 서버를 만들수 있습니다.
http.createServer(function(req, res){
res.writeHead(200, {'Content-Type' : 'text/html'});
res.end("Hello World!");
}).listen(8080);
Node.js 나만의 모듈 만들기
자신만의 모듈을 만들어 응용프로그램에 쉽게 포함시킬 수 있습니다.
다음 예제에서는 날짜 및 시간 객체를 반환하는 모듈을 만듭니다.
예)
현재 날짜와 시간을 반환하는 모듈을 만듭니다.
exports.myDateTime = function(){
return Data();
};
exports 키워드를 사용하여 모듈 파일외부에서 사용 가능한 속성 및 메서드를 만듭니다.
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4736 | jQuery | 8년 전 | 1558 | ||
| 4735 | jQuery | 8년 전 | 1746 | ||
| 4734 | jQuery | 8년 전 | 1735 | ||
| 4733 | jQuery | 8년 전 | 2032 | ||
| 4732 | jQuery | 8년 전 | 1955 | ||
| 4731 | jQuery | 8년 전 | 1459 | ||
| 4730 | jQuery | 8년 전 | 1915 | ||
| 4729 | PHP |
|
8년 전 | 6898 | |
| 4728 | jQuery | 8년 전 | 2561 | ||
| 4727 | jQuery | 8년 전 | 1610 | ||
| 4726 | jQuery | 8년 전 | 1689 | ||
| 4725 | jQuery | 8년 전 | 1833 | ||
| 4724 | jQuery | 8년 전 | 1310 | ||
| 4723 | jQuery | 8년 전 | 1861 | ||
| 4722 | jQuery | 8년 전 | 1624 | ||
| 4721 | jQuery | 8년 전 | 1917 | ||
| 4720 | jQuery | 8년 전 | 1974 | ||
| 4719 | jQuery | 8년 전 | 1601 | ||
| 4718 | jQuery | 8년 전 | 1607 | ||
| 4717 | jQuery | 8년 전 | 1558 | ||
| 4716 | jQuery | 8년 전 | 1235 | ||
| 4715 | jQuery | 8년 전 | 1391 | ||
| 4714 | jQuery | 8년 전 | 1414 | ||
| 4713 | jQuery | 8년 전 | 1333 | ||
| 4712 | jQuery | 8년 전 | 2226 | ||
| 4711 | jQuery | 8년 전 | 1708 | ||
| 4710 | PHP |
|
8년 전 | 3747 | |
| 4709 | jQuery | 8년 전 | 1629 | ||
| 4708 | jQuery | 8년 전 | 1906 | ||
| 4707 | jQuery | 8년 전 | 1759 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기