New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@cboulanger/zotero-sync-couchbase

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cboulanger/zotero-sync-couchbase - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

4

package.json
{
"name": "@cboulanger/zotero-sync-couchbase",
"version": "1.0.2",
"version": "1.0.3",
"description": "Couchbase store for @retorquere/zotero-sync",

@@ -31,3 +31,3 @@ "main": "src/index.js",

"@retorquere/zotero-sync": "^1.0.23",
"couchbase": "^3.1.2"
"couchbase": "3.1.0"
},

@@ -34,0 +34,0 @@ "devDependencies": {

@@ -5,7 +5,6 @@ # Couchbase Store for @retorquere/zotero-sync

This implementation allows to backup Zotero libraries in a
https://www.couchbase.com database. Zotero data is stored as JSON data in
Couchbase 'collections' that are named after the synchronized object types
("items", "collections" only), which are themselves stored in Couchbase 'scopes'
that are named "g\<group id>" or "u\<user id>".
This implementation allows to backup Zotero libraries in a https://www.couchbase.com database (tested with Couchbase
Version 7.0.0 build 4602). Zotero data is stored as JSON data in Couchbase 'collections' that are named after the
synchronized object types ("items", "collections" only), which are themselves stored in Couchbase 'scopes' that are
named `g<group id>` or `u<user id>`.

@@ -12,0 +11,0 @@ ## Testing

@@ -16,6 +16,7 @@ import { Sync } from '@retorquere/zotero-sync/index'

COUCHBASE_USER,
COUCHBASE_PASSWORD
COUCHBASE_PASSWORD,
COUCHBASE_BUCKET
} = process.env as {[key : string]: string};
const storeOptions : StoreOptions = {
bucketName : "testZoteroSync"
bucketName : COUCHBASE_BUCKET as string
}

@@ -29,3 +30,3 @@

const bucketSettings = {
name: storeOptions.bucketName as string,
name: storeOptions.bucketName,
ramQuotaMB: 200,

@@ -32,0 +33,0 @@ bucketType: BucketType.Couchbase,

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc