节点无法找到本地模块

发布于 2025-01-11 17:22:27 字数 285 浏览 0 评论 0原文

我正在测试一个非常简单的模块,看看它是否有效,并不断收到错误消息,指出节点找不到我的模块。

//mymodule.js
greeting = 'hello'
module.exports = greeting;

// main.js
const s = require('exportsPractice\mymodule.js');
console.log(s);

我收到的错误显示在此处

I was testing a very simple module to see if it works and keep on getting an error stating that node cannot find my module.

//mymodule.js
greeting = 'hello'
module.exports = greeting;

// main.js
const s = require('exportsPractice\mymodule.js');
console.log(s);

The error I get is shown here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

另类 2025-01-18 17:22:27

尝试使用:

const s = require('./exportsPractice/mymodule.js');

并确保路径正确。

Try using:

const s = require('./exportsPractice/mymodule.js');

And make sure the path is correct.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文