[node.js 응용] Node.js에서 다른 파일의 함수를 "include" 하는 방법

질문 : Node.js에서 다른 파일의 함수를 어떻게 "포함"합니까?

app.js라는 파일이 있다고 가정 해 보겠습니다. 매우 간단합니다.

 
 
var express = require('express');
 
var app = express.createServer();
 
app.set('views', __dirname + '/views');
 
app.set('view engine', 'ejs');
 
app.get('/', function(req, res){
 
res.render('index', {locals: {
 
title: 'NowJS + Express Example'
 
}});
 
});
 
 
 
app.listen(8080);

"tools.js"에 함수가 있으면 어떻게됩니까? apps.js에서 사용하려면 어떻게 가져 오나요?

아니면 .. "도구"를 모듈로 바꾸고 그것을 요구해야합니까? << 힘들어 보이지만 tools.js 파일의 기본 가져 오기를 수행합니다.

답변

모든 js 파일을 요구할 수 있으며 노출하려는 것을 선언하기 만하면됩니다.

 
 
// tools.js
 
// ========
 
module.exports = {
 
foo: function () {
 
// whatever
 
},
 
bar: function () {
 
// whatever
 
}
 
};
 
 
 
var zemba = function () {
 
}

그리고 앱 파일에서 :

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

 
 
// app.js
 
// ======
 
var tools = require('./tools');
 
console.log(typeof tools.foo); // => 'function'
 
console.log(typeof tools.bar); // => 'function'
 
console.log(typeof tools.zemba); // => undefined
출처 : https://stackoverflow.com/questions/5797852/in-node-js-how-do-i-include-functions-from-my-other-files

 

[출처] https://rateye.tistory.com/1017

 

 

 

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
21 [docker] 도커 실행 중인 전체 컨테이너 중지, 일괄 삭제 (prune) file 졸리운_곰 2021.08.14 637
20 [java][spring boot][swagger] Spring boot로 Swagger 적용하기 file 졸리운_곰 2021.07.27 318
19 [Java][Spring boot][swagger] [SpringBoot] Swagger - API Docs 자동화 file 졸리운_곰 2021.07.27 364
18 [JWT] JWT 토큰 기반 인증 file 졸리운_곰 2021.04.24 454
17 [JWT] JWT 서버 인증 file 졸리운_곰 2021.04.24 398
16 [JWT] REST JWT(JSON Web Token)소개 - #2 node.js에서 JWT 사용하기 file 졸리운_곰 2021.04.24 445
15 [JWT] JWT(JSON Web Token)을 이용한 API 인증 - #1 개념 소개 file 졸리운_곰 2021.04.24 372
14 [무중단 시스템 배포] 배포 전략: Rolling, Blue/Green, Canary file 졸리운_곰 2021.03.15 341
13 [MSA] REST API 제대로 알고 사용하기 file 졸리운_곰 2021.03.14 698
12 [MSA] [REST API] URL 규칙, RESTful한 URL이란? file 졸리운_곰 2021.03.14 376
11 [MSA] API Gateway 란! 그리고 왜 중요한가? file 졸리운_곰 2021.03.12 456
10 Building a real-time prediction pipeline using Spark Structured Streaming and Microservices file 졸리운_곰 2021.02.21 341
9 Use of microservices in Real time Data Streaming for Spark Streaming or Apache Flink file 졸리운_곰 2021.02.21 507
8 Design Techniques for Building Streaming Data, Cloud-Native Applications: Part 2 - Akka Streams, Kafka Streams, and Friends file 졸리운_곰 2021.02.21 439
7 Design Techniques for Building Streaming Data, Cloud-Native Applications: Part 1 - Spark, Flink, and Friends file 졸리운_곰 2021.02.21 373
6 Microservices 주요 패턴 정리 file 졸리운_곰 2021.02.21 380
5 A pattern language for microservices file 졸리운_곰 2021.02.21 560
4 마이크로서비스 패턴 file 졸리운_곰 2021.02.21 391
3 [디자인패턴] Design Patterns for Microservices 졸리운_곰 2021.02.21 383
2 마이크로서비스 디자인 패턴 file 졸리운_곰 2021.02.21 723
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED