https://github.com/codemonument/deno_simple_exec
A dead simple wrapper around the Deno.Command API for better stdout and stderr piping, by @codemonument
https://github.com/codemonument/deno_simple_exec
Last synced: about 2 months ago
JSON representation
A dead simple wrapper around the Deno.Command API for better stdout and stderr piping, by @codemonument
- Host: GitHub
- URL: https://github.com/codemonument/deno_simple_exec
- Owner: codemonument
- License: other
- Created: 2023-07-03T07:46:38.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-25T00:39:24.000Z (over 2 years ago)
- Last Synced: 2025-01-25T15:41:26.640Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# simple_exec
A dead simple wrapper around the Deno.Command API for better stdout handling, by
@codemonument
## Usage
Run `simpleExec(command: string, args[]: string[])`.\
Gets back
```ts
{
stdout: string;
stderr: string;
}
```
## On Registries
- nest.land: https://nest.land/package/simple_exec
---
# Developer Infos
## Publish to nest.land
Module URL: https://nest.land/package/simple_exec
1. Install `eggs` cli:
`deno install -Af --unstable https://x.nest.land/eggs@0.3.10/eggs.ts` UPDATE:
Use eggy cli instead of eggs, since eggs is broken since Deno 1.26:
https://github.com/nestdotland/eggs/issues/141
`deno install -Afq --unstable https://x.nest.land/eggy@0.3.50/cli.ts`
2. `eggy link ` (used codemonument account)
3. `eggy publish`