如何将文件文件路径作为参数传递给脚本?
list.js发送数据
我想从package.json:
"scripts": {
"start": "node list.js",
}
:
const serviceAccount = require(path);
当我执行命令 npm start ./style.json
时,我想将路径传递给 path
变量在 list.js 中
我该怎么做?
I want to send the data from
package.json:
"scripts": {
"start": "node list.js",
}
list.js:
const serviceAccount = require(path);
when I execute command npm start ./style.json
I wanted to pass the path to to path
variable in list.js
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上,您需要使用
process.argv
,第三项是./style.json
。在list.js
中使用:Basically, you need to use
process.argv
, the third item is./style.json
. insidelist.js
use this: