
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
couchdb-view-tester
Advanced tools
Your friendly helper to quickly iterate on CouchDB views
# npm install -g couchdb-view-tester
couchdb-view-tester <db url> [--watch] --map=<path to map function> --reduce=<path to reduce function> <view options>
Give your CouchDB database you want to test your map/reduce function on is accessible at http://localhost:5984/mydb, do
couchdb-view-tester http://localhost:5984/mydb --map=./path/to/map.js --reduce=./path/to/reduce.js --limit=3
Both, map.js
and reduce.js
must return an anonymous function, for example
// map.js
module.exports = function(doc) {
if (doc.Type == "customer") {
emit(doc._id, doc.LastName);
}
}
// reduce.js
function (key, values, rereduce) {
return sum(values);
}
Options are equal to PouchDB's db.query
options:
http://pouchdb.com/api.html#query_database
require('couchdb-view-tester')
FAQs
Your friendly helper to quickly iterate on CouchDB views
The npm package couchdb-view-tester receives a total of 9 weekly downloads. As such, couchdb-view-tester popularity was classified as not popular.
We found that couchdb-view-tester 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.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.