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.
- Host: GitHub
- URL: https://github.com/j50n/deno-proc
- Owner: j50n
- License: other
- Created: 2021-11-06T00:31:03.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-09-11T21:06:10.000Z (4 months ago)
- Last Synced: 2025-09-12T00:05:16.223Z (4 months ago)
- Topics: async, asynciterable, asynciterableiterator, await, bash, child, command, deno, execute, process, promise, run, shell, spawn, stderr, stdin, stdout, subprocess, worker
- Language: TypeScript
- Homepage:
- Size: 3.8 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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.