https://github.com/brad-jones/dexeca
A dartlang child process executor inspired by https://github.com/sindresorhus/execa
https://github.com/brad-jones/dexeca
childprocess dart
Last synced: 19 days ago
JSON representation
A dartlang child process executor inspired by https://github.com/sindresorhus/execa
- Host: GitHub
- URL: https://github.com/brad-jones/dexeca
- Owner: brad-jones
- License: mit
- Created: 2020-03-13T04:46:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-19T02:40:46.000Z (about 6 years ago)
- Last Synced: 2025-01-12T05:08:33.402Z (over 1 year ago)
- Topics: childprocess, dart
- Language: Dart
- Homepage: https://pub.dev/packages/dexeca
- Size: 432 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# dexeca


[](https://github.com/semantic-release/semantic-release)
[](https://conventionalcommits.org)
[](https://keepachangelog.com/)
[](https://github.com/brad-jones/dexeca/blob/master/LICENSE)
A dartlang child process executor inspired by
## Usage
```dart
import 'package:dexeca/dexeca.dart';
void main() {
await dexeca('ping', ['1.1.1.1']);
}
```
> see [./example/main.dart](./example/main.dart) for more details