![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
A Node.js module for looking up running processes. This module uses Table-Parser to parse the output.
Before using this module, you should take look at section Existing Bugs You Should Know at the bottom of this doc.
$ npm install ps-node
This module uses different tools to get process list:
ps
command. Since the default result from shell command $ ps
will not contain "command arguments" in linux like "ubuntu", ps-node add arguments lx
as default. Which means, the default value for option psargs
is lx
.wmic process get ProcessId,CommandLine
through "cmd", more info about wmic is here. Anyway, there is also another tool name tasklist in windows, which can also list all the running processes, but lack of command arguments infomation. But compared to wmic, I think this tool should have a higher performance. You should take a look at the wrapper for this tool tasklist by @sindresorhs if you are interested.Any compatibility issue is welcomed.
Lookup process with specified pid
:
var ps = require('ps-node');
// A simple pid lookup
ps.lookup({ pid: 12345 }, function(err, resultList ) {
if (err) {
throw new Error( err );
}
var process = resultList[ 0 ];
if( process ){
console.log( 'PID: %s, COMMAND: %s, ARGUMENTS: %s', process.pid, process.command, process.arguments );
}
else {
console.log( 'No such process found!' );
}
});
Or use RegExp to filter command
and arguments
:
var ps = require('ps-node');
// A simple pid lookup
ps.lookup({
command: 'node',
arguments: '--debug',
}, function(err, resultList ) {
if (err) {
throw new Error( err );
}
resultList.forEach(function( process ){
if( process ){
console.log( 'PID: %s, COMMAND: %s, ARGUMENTS: %s', process.pid, process.command, process.arguments );
}
});
});
Also, you can use kill
to kill process by pid
:
var ps = require('ps-node');
// A simple pid lookup
ps.kill( '12345', function( err ) {
if (err) {
throw new Error( err );
}
else {
console.log( 'Process %s has been killed!', pid );
}
});
Method kill
also supports a signal
option to be passed. It's only a wrapper of process.kill()
with checking of that killing is finished after the method is called.
var ps = require('ps-node');
// Pass signal SIGKILL for killing the process without allowing it to clean up
ps.kill( '12345', 'SIGKILL', function( err ) {
if (err) {
throw new Error( err );
}
else {
console.log( 'Process %s has been killed without a clean-up!', pid );
}
});
you can use object as the second parameter to pass more options:
ps.kill( '12345', {
signal: 'SIGKILL',
timeout: 10, // will set up a ten seconds timeout if the killing is not successful
}, function(){});
Notice that the nodejs build-in process.kill()
does not accept number as the signal, you will have to use string format.
You can also pass arguments to lookup
with psargs
as arguments for ps
command(Note that psargs
is not available in windows):
var ps = require('ps-node');
// A simple pid lookup
ps.lookup({
command: 'node',
psargs: 'ux'
}, function(err, resultList ) {
if (err) {
throw new Error( err );
}
resultList.forEach(function( process ){
if( process ){
console.log( 'PID: %s, COMMAND: %s, ARGUMENTS: %s', process.pid, process.command, process.arguments );
}
});
});
Lastly, you can filter a list of items by their PPID by passing a PPID to filter on. You will need to pass in a psarg
that provides the PPID in the results (-l
or -j
for instance).
var ps = require('ps-node');
// A simple pid lookup
ps.lookup({
command: 'mongod',
psargs: '-l',
ppid: 82292
}, function(err, resultList ) {
if (err) {
throw new Error( err );
}
resultList.forEach(function( process ){
if( process ){
console.log( 'PID: %s, COMMAND: %s, ARGUMENTS: %s', process.pid, process.command, process.arguments );
}
});
});
I'm still working on these bugs at the moment, before using this module in any serious way, please take a look at them, and take your own risk.
FAQs
A process lookup utility
The npm package ps-node receives a total of 0 weekly downloads. As such, ps-node popularity was classified as not popular.
We found that ps-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.