Gathering detailed insights and metrics for moleculer-db-adapter-couchdb-nano
Gathering detailed insights and metrics for moleculer-db-adapter-couchdb-nano
npm install moleculer-db-adapter-couchdb-nano
Typescript
Module System
Min. Node Version
Node Version
NPM Version
61.5
Supply Chain
89.1
Quality
80.7
Maintenance
50
Vulnerability
98.2
License
moleculer-db@0.8.28
Updated on Feb 17, 2025
moleculer-db-adapter-mongoose@0.10.0
Updated on Jan 29, 2025
moleculer-db@0.8.26
Updated on Aug 24, 2024
moleculer-db@0.8.25
Updated on Nov 12, 2023
moleculer-db@0.8.24
Updated on Jul 15, 2023
moleculer-db-adapter-mongoose@0.9.3
Updated on Jul 15, 2023
JavaScript (100%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
6,406
Last Day
1
Last Week
2
Last Month
25
Last Year
772
MIT License
154 Stars
595 Commits
121 Forks
9 Watchers
30 Branches
48 Contributors
Updated on Feb 17, 2025
Minified
Minified + Gzipped
Latest Version
0.1.15
Package Id
moleculer-db-adapter-couchdb-nano@0.1.15
Unpacked Size
27.90 kB
Size
7.13 kB
File Count
10
NPM Version
lerna/4.0.0/node@v16.20.2+x64 (win32)
Node Version
16.20.2
Published on
Jan 29, 2025
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
-50%
2
Compared to previous week
Last Month
-83.1%
25
Compared to previous month
Last Year
9.2%
772
Compared to previous year
CouchDB Nano adapter for Moleculer DB service.
1$ npm install moleculer-db moleculer-db-adapter-couchdb-nano --save
1"use strict"; 2 3const { ServiceBroker } = require("moleculer"); 4const DbService = require("moleculer-db"); 5const CouchDBAdapter = require("moleculer-db-adapter-couchdb-nano"); 6 7const broker = new ServiceBroker(); 8 9// Create a CouchDB service for `blog-post` entities 10broker.createService({ 11 name: "blog", 12 collection: "posts", 13 adapter: new CouchDBAdapter("couchdb://localhost:5984"), 14 mixins: [DbService] 15}); 16 17broker.start() 18// Create a new post 19.then(() => broker.call("posts.create", { 20 title: "My first post", 21 content: "Lorem ipsum...", 22 votes: 0 23})) 24 25// Get all posts 26.then(() => broker.call("posts.find").then(console.log));
**Example with default connection to localhost:5984 **
1new CouchDBAdapter()
Example with connection URI & options
1new CouchDBAdapter("couchdb://localhost:5984", {
2 //any opts supported by Nano
3})
$ npm test
In development with watching
$ npm run ci
The project is available under the MIT license.
Copyright (c) 2018 Mr. Kutin
No vulnerabilities found.
Reason
15 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 8/10 approved changesets -- score normalized to 8
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
39 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-03-03
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More