Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 943 Bytes

README.zh_CN.md

File metadata and controls

47 lines (31 loc) · 943 Bytes

English简体中文

bshell

Download Coverage Npm Node License

提供shelljs之外的一些便捷的 nodejs 命令。

bshell(better shell)意思是更好的 shell。

安装

使用 npm

npm i bshell

使用 yarn

yarn add bshell

使用 pnpm

pnpm add bshell

使用

ps

import { Ps } from 'bshell';

const ps = new Ps();

ps.execute().then((res) => {
  console.log(res); // [{ pid: 123, tty: 'ttys001' }, ...]
});