
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Deadcode shows you source files that are not required anywhere given entry point scripts.
Deadcode list all files not required anywhere in your project and let you remove them.
Deadcode will ignore dynamic requires but will provide you with a list of files that contain them.
Deadcode look for import declarations and calls of the require function. In other word if you assign require to another var and use it to load a dependency, it will not handle it.
$ npm add deadcode --save-dev
$ deadcode --list-all info 5 dependencies found ├─ /Users/dead-code/demo/index.js ├─ /Users/dead-code/demo/a.js ├─ fs ├─ /Users/dead-code/demo/b.js └─ /Users/dead-code/demo/c.js warning 1 files with dynamic dependencies found └─ /Users/dead-code/demo/a.js warning 1 ignored dependencies found └─ /Users/dead-code/node_modules/@babel/core/lib/index.js success 0 unparsed dependencies found success 0 unresolved dependencies warning 1 dead files found └─ /Users/dead-code/demo/d.js
You can get help with:
$ deadcode --help
Options could be:
$ deadcode --ignore="**/node_modules/**,**/__tests__/**"
config
:
$ deadcode --config=".deadcoderc"
deadcode
property of your package.json:
{
"deadcode": {
"ignore": ["**/node_modules/**"]
}
}
You should know that:
main
property of your package.json will be used.FAQs
Deadcode shows you source files that are not required
The npm package deadcode receives a total of 142 weekly downloads. As such, deadcode popularity was classified as not popular.
We found that deadcode 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.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.