问题标签 [shelljs]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - 异步问题,无法在 .then 之后运行 shelljs 命令
更新:我在写入文件后添加了一个短暂的暂停,直到那时 shell 命令才起作用。
原始问题
我的.then()
块后createInsertCurlReq.createInsertCurlReq(process.argv[2])
没有运行。我应该如何重写它才能做到这一点?我注意到如果我不删除文件而只是追加到,脚本就会运行。
node.js - 如何在 nodejs 中运行 tmux cmds
有什么方法可以像nodejs一样运行tmux
cmds 。我在网上搜索过,但找不到任何有用的东西可以帮助我消除错误。tmux kill-server
tmuxinator start rails_servers
我正在通过shelljs
npm 模块尝试此操作,但对我没有帮助。
我收到此错误;
Pseudo-terminal will not be allocated because stdin is not a terminal.
Permission denied (publickey).
当使用这些代码行tmux
通过 nodejs 运行 cmds 时
这里,shell
是用于shelljs
npm 模块的变量。
任何帮助将不胜感激。提前致谢。
node.js - 为什么在使用 shelljs 克隆 git repo 时会出现 NullReferenceException?
我正在尝试编写一个需要克隆 git repo 的相当简单的 nodejs 程序。
抛出如下错误,然后似乎挂起而不会永远退出:
没有额外的输出或堆栈跟踪,甚至没有行号。发生了什么事,我怎样才能让它工作,或者至少获得关于正在发生的事情和原因的更多信息?
我知道我可以使用 nodegit 或类似的东西而不是使用 shell,但我认为我会受益于理解这里发生的事情如何解决输出如此稀疏的情况。
javascript - 在 expressJS 应用程序中,是否可以在脚本执行时实时收集写入控制台的数据?
我正在尝试将 bash 脚本的输出输入到 ExpressJS 应用程序中,然后我可以将数据发送到客户端。我在下面创建了一个脚本,它模仿了我将用于我的项目的实际脚本的输出。我希望能够在写入终端时收集这些数据,将其存储在我的 express 应用程序中的一个变量中,然后我可以通过 SSE 或 websocket 发送数据。
到目前为止我所拥有的:
当有 post 请求时,shellJS 在本地目录中执行一个脚本,并将输出写入控制台。问题是,当脚本完成执行时,数据是一次性写入的,而不是在数据到来时写入。我希望能够与这些数据实时交互。这甚至可能吗?
编辑:子进程是要走的路。这是我为其他有此问题的人提供的解决方案。
javascript - Using NPM ShellJS to execute a Git command in Node returns an empty string inside `stdout`
I'm using NPM ShellJS to execute the following Git command inside a Node script:
git for-each-ref --sort=v:refname --format "tag: %(refname:strip=2) message: %(subject) date: %(authordate:iso)" refs/tags
If I run this command inside a normal command line window, it works perfectly and results in an output similar to this:
However, when I run this command in Node using ShellJS, the contents of stdout
is an empty string:
How do I get the output as specified about, instead of the empty string?
javascript - 如何通过 html“按钮单击”调用“JS 文件”并且 JS 文件正在使用 shell.js 运行 bash 脚本
我想通过单击 html 按钮连接到“server.js”文件。
“server.js”文件正在使用 shell.js 运行“bash.sh”文件
任何人都可以就如何进行提供一些想法或指导吗?
按钮.html
客户端.js
服务器.js
bash.sh
typescript - 如何在使用 shelljs 将一个文件夹移动到另一个文件夹时排除某些文件
我在结构存储库下面:
在这里,我想将文件从第三方/src/common移动到src/common,但我必须排除三个.ts文件。
我有像下面这样的 bur 它移动所有文件:
javascript - 将 Json 文件转换为 JS 文件
我创建了一个模块来导入某个目录中的所有 JSON 文件,现在我想将它们转换为 JS 文件并将它们导出到一个目录中。我想使用 babel 插件或 shellJS 来做到这一点