Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
dockerode-process
Advanced tools
ChildProcess like interface for docker containers.
Root module exported from require('docker-process')
.
var DockerProcess = require('docker');
var dockerProc = new DockerProcess(
// dockerode instance
docker,
{
// For POST /containers/create
create: {},
// For POST /containers/(id)/start
start: {}
}
);
See
exit
Emitted when docker container stops
close
Identical to exit
container
Emitted once the container is created (not running yet)
container start
Emitted once the container is started
dockerProc.stdout
Readable stream for stdout.
dockerProc.stderr
Readable stream for stderr.
dockerProc.id
Container id populated during run.
dockerProc.exitCode
Exit code populated after run.
dockerProc.run([options])
Pull the image from the docker index then create then start the container and return a promise for its exit status.
Options:
pull=true
when false assume the image is cached.dockerProc.run().then(
function(code) {
}
)
dockerProc.remove()
Remove the docker container.
var DockerProcess = require('dockerode-process');
var dockerProc = new DockerProcess(
// dockerode instance
docker,
{
// http://docs.docker.io/en/latest/api/docker_remote_api_v1.8/#create-a-container
create: {
Image: 'ubuntu',
Cmd: ['/bin/bash', '-c', 'echo "xfoo"']
},
// http://docs.docker.io/en/latest/api/docker_remote_api_v1.8/#start-a-container
start: {}
}
);
dockerProc.run();
// a reference to the container can be obtained by waiting for the
// container event
dockerProc.once('container', function(container) {
});
dockerProc.stdout.pipe(process.stdout);
dockerProc.once('exit', function(code) {
process.exit(code);
})
FAQs
ChildProcess like interface for docker containers
The npm package dockerode-process receives a total of 1 weekly downloads. As such, dockerode-process popularity was classified as not popular.
We found that dockerode-process demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.