
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@emdaer/cli
Advanced tools
emdaer CLI
@emdaer/cli is the emdaer cli โ see the emdaer monorepo for more information
We recommend using emdaer with lint-staged and husky.
Install dependencies:
npm install --save-dev @emdaer/cli @emdaer/plugin-value-from-package lint-staged husky
or with yarn:
yarn add @emdaer/cli @emdaer/plugin-value-from-package lint-staged husky -D
Follow the lint-staged setup instructions.
{
"scripts": {
+ "emdaer": "emdaer && git add *.md",
+ "precommit": "lint-staged"
}
}
In your lint-staged config file add an entry for emdaer:
module.exports = {
'*.js': ['eslint --fix', 'prettier --write', 'git add'],
+ '*.emdaer.md': ['emdaer --yes', 'git add'],
};
NOTE: In the case of a precommit
hook (or CI/other automation), we donโt want to be prompted about anything. The --yes
flag will automatically answer โyesโ to any prompts. For example, it will make emdaer write your READMEs without prompting about overwritting direct changes to a destination README file.
Add a .emdaer/README.emdaer.md
file:
# <!--emdaer-p
- '@emdaer/plugin-value-from-package'
- value: name
-->
And give it a whirl:
npm run emdaer
When you commit your changes, lint-staged will run emdaer on any *.emdaer.md
files you may have changed.
emdaer can be run manually against files by providing space separated file paths:
npm run emdaer -- .emdaer/README.emdaer.md .emdaer/CONTRIBUTING.emdaer.md
If emdaer is not provided a path, the default glob .emdaer/**/*.emdaer.md
is searched:
npm run emdaer
NOTE: By default, emdaer checks for existing changes to your READMEs before writing. If it detects changes, it will provide a prompt asking if you would like to overwrite the README with the newly generated content. If you accidentally edited the README directly, you will want to answer n
to the prompt, move any changes to the respective .emdaer/*.emdaer.md
file, and rerun emdaer. If you would like to discard those changes, answer Y
to the prompt or use the --yes
flag to skip the prompt all together. In both cases, emdaer will overwrite the README with the newly generated content.
FAQs
emdaer CLI
The npm package @emdaer/cli receives a total of 242 weekly downloads. As such, @emdaer/cli popularity was classified as not popular.
We found that @emdaer/cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.ย It has 4 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last weekโs supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.