process-name

Get process name of applications crossplatform

MIT License

Downloads
101
Stars
1
Committers
6

process-name

Get platform specific application process name (cross platform)

Install

npm i process-name --save

Usage


const { ProcessName, ProcessNameConstants } = require('process-name');

const chromeProcessName = ProcessName.BROWSERS[ProcessNameConstants.BROWSERS.CHROME][process.platform];
const firefoxProcessName = ProcessName.BROWSERS[ProcessNameConstants.BROWSERS.FIREFOX][process.platform];

console.log(chromeProcessName, firefoxProcessName);

// Output
// Chrome, firefox

Contributing

Interested in contributing to this project? You can log any issues or suggestion related to this library here

Read our contributing guide on getting started with contributing to the codebase