如何将文件文件路径作为参数传递给脚本?

发布于 2025-01-09 00:20:55 字数 292 浏览 1 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

雨巷深深 2025-01-16 00:20:55

基本上,您需要使用 process.argv,第三项是./style.json。在 list.js 中使用:

const path = process.argv[2]
const serviceAccount = require(path);
console.log(serviceAccount)

Basically, you need to use process.argv, the third item is ./style.json. inside list.js use this:

const path = process.argv[2]
const serviceAccount = require(path);
console.log(serviceAccount)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文