UNPKG

actionhero

Version:

The reusable, scalable, and quick node.js API server for stateless and stateful applications

8 lines (7 loc) 135 B
export function isRunning(pid: number) { try { return process.kill(pid, 0); } catch (e) { return e.code === "EPERM"; } }