Installations
npm install spawndamnit
Developer Guide
Typescript
No
Module System
CommonJS
Node Version
20.18.0
NPM Version
10.8.2
Releases
Unable to fetch releases
Contributors
Unable to fetch Contributors
Languages
JavaScript (100%)
Love this project? Help keep it running — sponsor us today! 🚀
Developer
thejameskyle
Download Statistics
Total Downloads
81,845,179
Last Day
25,046
Last Week
25,046
Last Month
3,891,663
Last Year
44,812,020
GitHub Statistics
79 Stars
10 Commits
4 Forks
4 Watching
8 Branches
2 Contributors
Bundle Size
7.36 kB
Minified
2.92 kB
Minified + Gzipped
Package Meta Information
Latest Version
3.0.1
Package Id
spawndamnit@3.0.1
Unpacked Size
4.37 kB
Size
2.16 kB
File Count
6
NPM Version
10.8.2
Node Version
20.18.0
Publised On
18 Nov 2024
Total Downloads
Cumulative downloads
Total Downloads
81,845,179
Last day
0%
25,046
Compared to previous day
Last week
-97.4%
25,046
Compared to previous week
Last month
-0.7%
3,891,663
Compared to previous month
Last year
99.2%
44,812,020
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Dependencies
2
spawndamnit
Take care of your
spawn()
Features
- Returns an
await
-able promise - Collects
stdout
andstderr
buffers - Emits events "stdout" and "stderr"
- Automatically kills all spawn processes when parent process dies
Installation
1yarn add spawndamnit
Usage
Basic:
1const spawn = require('spawndamnit'); 2 3async function main() { 4 let child = spawn('npm', ['star', 'spawndamnit']); 5 6 child.on('stdout', data => console.log(data.toString())); 7 child.on('stderr', data => console.error(data.toString())); 8 9 let { code, stdout, stderr } = await child; 10 11 console.log(code === 0 ? 'success' : 'error'); 12}
![Empty State](/_next/static/media/empty.e5fae2e5.png)
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
- Info: project has a license file: LICENSE:0
- Info: FSF or OSI recognized license: MIT License: LICENSE:0
Reason
1 existing vulnerabilities detected
Details
- Warn: Project is vulnerable to: GHSA-f8q6-p94x-37v3
Reason
Found 1/10 approved changesets -- score normalized to 1
Reason
2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
- Warn: 0 commits out of 1 are checked with a SAST tool
Score
3.2
/10
Last Scanned on 2025-01-27
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More