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.
ember-cli-search
Advanced tools
This adds a search
command to ember-cli. To view more information run ember search --help
. It currently supports 3
search modes: addon discovery, code discovery, and code exploration which are explained below.
The addon discovery mode allows you to search for addons based on a given keyword. This is a great way to discovery addons within the community:
ember search --addon 'i18n'
The code discovery mode allows you to search all addons that contain a given code snippet. This is great to find other
addons that are using a method or hook that you would like to learn more about. As an example, hooks within your index.js
file such as: included
, treeForApp
, treeForPublic
, etc. are not well documented. Here we can search to find other
addons which are using one of these hooks:
ember search --code 'treeForPublic'
The last mode is code exploration. This allows you to see actual code diffs based on that code snippet. Note that we must supply the exact addon name via --addon.
ember search --addon 'ember-intl' --code 'treeForPublic'
Both --addon
and --code
have the following shortcuts respectfully: -a
and -c
. To view more information:
ember search --help
.
The results and code search are powered by emberobserver.com.
FAQs
Ember addon which adds the ember-cli command `search`
The npm package ember-cli-search receives a total of 1 weekly downloads. As such, ember-cli-search popularity was classified as not popular.
We found that ember-cli-search 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
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.