Nodejs Error: Cannot find module 当前文件夹下的模块

当执行如下代码是,nodejs 报错 Cannot find module(a.js 为当前文件夹下的同级文件)

var x = require("a.js") 

修改为 ./ 后正常

var x = require("./a.js") 

或者执行node命令入口时添加 (index.js 为主入口文件)

NODE_ENV . node index.js

主要目的:将当前文件夹”.” 添加到node 查找模块的路径中

参考文档:https://gist.github.com/branneman/8048520

原文如下:
4.2. Only while executing node

This solution will not affect your environment other than what node preceives. It does change your application start command.

Start your application like this from now on:
Linux: NODE_PATH=. node app
Windows: cmd.exe /C “set NODE_PATH=.&& node app”

(On Windows this command will not work if you put a space in between the path and the &&. Crazy shit.)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值