>웹 프론트엔드 >JS 튜토리얼 >Node.js에 외부 파일의 함수를 포함하는 방법은 무엇입니까?

Node.js에 외부 파일의 함수를 포함하는 방법은 무엇입니까?

Mary-Kate Olsen
Mary-Kate Olsen원래의
2024-11-30 01:40:10697검색

How to Include Functions from External Files in Node.js?

Node.js에 외부 파일의 함수 포함

별도 파일의 함수를 활용하려면 "tools.js, " 기본 Node.js 애플리케이션("app.js")에는 두 가지가 있습니다. 옵션.

1. 기본 가져오기:

"tools.js" 파일을 직접 요구하고 노출할 기능을 선택할 수 있습니다.

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

"app.js"에서:

const tools = require('./tools');
console.log(typeof tools.foo); // 'function'
console.log(typeof tools.bar); // 'function'

"tools.js"에서 지정된 기능만 노출합니다. 단, 이 방법은 변수나 클래스 노출을 지원하지 않습니다.

2. 모듈 내보내기:

"도구"를 모듈로 전환한 다음 이를 요구할 수 있습니다.

// tools.js
export default {
  foo: function () {},
  bar: function () {}
};

export class Foo {}

"app.js"에서:

import tools from './tools';
console.log(typeof tools.foo); // 'function'
console.log(typeof tools.bar); // 'function'
console.log(tools.Foo instanceof Function); // true

이 방법은 변수 및 클래스를 포함하여 모듈에서 모든 내보내기 가져오기를 지원합니다.

위 내용은 Node.js에 외부 파일의 함수를 포함하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.