标签: javascript node.js
我是新手,正在学习NodeJS并收到错误消息未找到模块。请帮助我尝试查找原因。
app.js
const getNotes = require('./notes.js') const msg = getNotes(); console.log(msg)
notes.js
const getNotes= function (){ return 'My notes are publishing' } module.exports = getNotes