Uncaught ReferenceError: module/require is not defined

前端 未结 1 1545
梦如初夏
梦如初夏 2021-01-28 06:51

I am learning about how to create/import/export modules in Node.js, i have gone through these and was trying to learn by creating a sample application

相关标签:
1条回答
  • Ok, I think those exports aren't correct:

    exports.sayHelloInEnglish = function(){
        return "Hello";
    }
    
    exports.sayHelloInSpanish = function(){
        return "Hola";
    }
    
    0 讨论(0)
提交回复
热议问题