本文目录

Deno.run

🌙
手机阅读
本文目录结构

run

  • run(opt: RunOptions): Process

  • 派生新的子进程。 RunOptions 必须包含 opt.cmd,即程序参数数组,其中第一个参数是二进制文件路径。

    Spawns new subprocess. RunOptions must contain at a minimum the opt.cmd, an array of program arguments, the first of which is the binary.

    子进程使用与父进程相同的工作目录,除非指定了 opt.cwd

    Subprocess uses same working directory as parent process unless opt.cwd is specified.

    子进程的环境变量可以使用 opt.env 来设置。

    Environmental variables for subprocess can be specified using opt.env mapping.

    默认情况下,子进程继承父进程的 stdio。要更改这些值,可以分别指定opt.stdoutopt.stderropt.stdin

    • 可以将其设置为 ProcessStdio 或打开文件的 rid

    By default subprocess inherits stdio of parent process. To change that opt.stdout, opt.stderr and opt.stdin can be specified independently - they can be set to either ProcessStdio or rid of open file.

    返回派生子进程的详细信息。

    Details of the spawned process are returned.

      const p = Deno.run({
        cmd: ["echo", "hello"],
      });
    

    需要 allow-run 权限。

    Requires allow-run permission.

参数

-   ##### opt: [RunOptions](interfaces/deno.runoptions.html)

返回 Process

AXIHE / 精选资源

浏览全部教程

面试题

学习网站

前端培训
自己甄别

前端书籍

关于朱安邦

我叫 朱安邦,阿西河的站长,在杭州。

以前是一名平面设计师,后来开始接接触前端开发,主要研究前端技术中的JS方向。

业余时间我喜欢分享和交流自己的技术,欢迎大家关注我的 Bilibili

关注我: Github / 知乎

于2021年离开前端领域,目前重心放在研究区块链上面了

我叫朱安邦,阿西河的站长

目前在杭州从事区块链周边的开发工作,机械专业,以前从事平面设计工作。

2014年底脱产在老家自学6个月的前端技术,自学期间几乎从未出过家门,最终找到了满意的前端工作。更多>

于2021年离开前端领域,目前从事区块链方面工作了