Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
analyze-ember-project-dependencies
Advanced tools
Analyze dependencies of an Ember project
Both Embroider and pnpm
ask that packages declare their dependencies correctly. The codemod (really, a linter) performs a static code analysis so that you can easily find missing and unused dependencies.
For more information, see Fixing Package Dependencies.
Step 1. Run the codemod (e.g. at the workspace root of a monorepo).
cd <path/to/your/project>
npx analyze-ember-project-dependencies
Step 2. Check the output for true positives.
By default, apps and addons follow the flat component structure for components. Pass --component-structure
to indicate otherwise.
npx analyze-ember-project-dependencies --component-structure nested
Pass --root
to run the codemod somewhere else (i.e. not in the current directory).
npx analyze-ember-project-dependencies --root <path/to/your/project>
The codemod is designed to cover typical cases. It is not designed to cover one-off cases.
To better meet your needs, consider cloning the repo and running the codemod locally.
cd <path/to/cloned/repo>
# Compile TypeScript
pnpm build
# Run codemod
./dist/bin/analyze-ember-project-dependencies.js --root <path/to/your/project>
[!IMPORTANT]
The codemod uses a list called
KNOWN_ENTITIES
to analyze implicit code. The list accounts for packages that live outside of your project. It isn't meant to be (and doesn't have to be) exhaustive.You can modify
KNOWN_ENTITIES
to get more accurate results.
src/utils/find-entities/known-entities.ts
const KNOWN_ENTITIES = new Map<PackageName, Partial<ProjectDataEntities>>([ [ '@ember/render-modifiers', { modifiers: ['did-insert', 'did-update', 'will-destroy'], }, ], // ... ]);
See the Contributing guide for details.
This project is licensed under the MIT License.
FAQs
Analyze dependencies of an Ember project
The npm package analyze-ember-project-dependencies receives a total of 5 weekly downloads. As such, analyze-ember-project-dependencies popularity was classified as not popular.
We found that analyze-ember-project-dependencies demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.