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 중국어 웹사이트의 기타 관련 기사를 참조하세요!