0.0.2 • Published 2 years ago

@esutils/process v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

A process library that implemented in typescript

This process library can be used by es module, commonjs module and typescript module.

Examples

Usage in typescript module, file with .ts extension

import { exec } from '@esutils/process';

async function demo() {
  const result = await exec('node', ['--version']);
  const versionString = result.stdout.toString('utf-8');
  console.log(versionString);
}

demo();