diff --git a/package.json b/package.json index 6a72216e5c..3f9848d0e2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "execa", "version": "1.0.0", - "description": "A better `child_process`", + "description": "Process execution for humans", "license": "MIT", "repository": "sindresorhus/execa", "author": { diff --git a/readme.md b/readme.md index d4198c3c1e..5c6320c6c1 100644 --- a/readme.md +++ b/readme.md @@ -3,11 +3,13 @@ [![Build Status](https://travis-ci.org/sindresorhus/execa.svg?branch=master)](https://travis-ci.org/sindresorhus/execa) [![Coverage Status](https://coveralls.io/repos/github/sindresorhus/execa/badge.svg?branch=master)](https://coveralls.io/github/sindresorhus/execa?branch=master) -> A better [`child_process`](https://nodejs.org/api/child_process.html) +> Process execution for humans ## Why +This improves [`child_process`](https://nodejs.org/api/child_process.html) methods with: + - Promise interface. - [Strips the final newline](#stripfinalnewline) from the output so you don't have to do `stdout.trim()`. - Supports [shebang](https://en.wikipedia.org/wiki/Shebang_(Unix)) binaries cross-platform.