An open API service indexing awesome lists of open source software.

https://github.com/j50n/deno-proc

A better way to work with processes in Deno.
https://github.com/j50n/deno-proc

async asynciterable asynciterableiterator await bash child command deno execute process promise run shell spawn stderr stdin stdout subprocess worker

Last synced: 2 months ago
JSON representation

A better way to work with processes in Deno.

Awesome Lists containing this project

README

          

# proc

Run child processes and work with IO in Deno using `AsyncIterables` that work
the way you expect them to.

Documentation:
[https://j50n.github.io/deno-proc/](https://j50n.github.io/deno-proc/).

To use:

```typescript
import * as proc from "http://deno.land/x/proc/mod.ts";

await proc.run("ls", "-la").toStdout();
```

The API is stabilizing and moving toward a 1.0 release. Documentation is a work
in progress.