
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
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 1,822 weekly downloads. As such, eslint-plugin-couchdb popularity was classified as 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
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.