
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.
eslint-plugin-couchdb
Advanced tools
Adds basic support for CouchDB design document JavaScript files.
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-couchdb
:
$ npm install eslint-plugin-couchdb --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-couchdb
globally.
You should create an .eslintrc
file in the root before your design documents, to make sure you don't compile it into your design documents by mistake:
ddocs/
first-ddoc/
views/
..
second-ddoc/
views/
..
validate_doc_update.js
.eslintrc <-- goes here
Recommended .eslintrc
file:
{
"extends": "eslint:recommended",
"plugins": ["couchdb"]
}
This plugin doesn't dictate much, for example ES5 vs ES6, as you may only be deploying against PouchDB, which can handle anything your browser can.
If you are deploying to CouchDB you should constrain yourself to ES5 only.
{
"extends": "eslint:recommended",
"plugins": ["couchdb"],
"parserOptions": {
"ecmaVersion": 5,
}
}
FAQs
Adds support for CouchDB design document JavaScript files
The npm package eslint-plugin-couchdb receives a total of 249 weekly downloads. As such, eslint-plugin-couchdb popularity was classified as not popular.
We found that eslint-plugin-couchdb 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
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.