A simple TypeScript/Node.js utility to spawn processes and get their output with async/await
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
Kuba Orlik 4c3efee4d7 maybe install will work? 4 years ago
src Initial commit 4 years ago
.gitignore Initial commit 4 years ago
.npmignore Rename 4 years ago
README.md Add README 4 years ago
package-lock.json 0.1.5 4 years ago
package.json maybe install will work? 4 years ago
tsconfig.json es6 4 years ago

README.md

An async wrapper for nodejs' spawn

import spawn from "async-spawner";
await simpleSpawn("ls", "-al");
import { deferedSpawn } from "async-spawner";
const ping = await deferedSpawn("ping", ["8.8.8.8"]);
let response;
do{
    response = await ping.waitForNextData();
    console.log("new ping!", response);
}
ping.kill();