
Security News
152 Chrome Live Wallpaper Extensions Hid Ad Tracking and Faked Google Search Traffic
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.
zotero-client-ts
Advanced tools
A lightweight, minimalistic TypeScript client for the Zotero API. Complete TypeScript re-implementation with 100% API compatibility, full type safety, and modern ESM/CJS builds.
A lightweight, minimalistic TypeScript client for the Zotero API.
All unit and integration tests passing.
# Run all tests
bun test
# Result: 159 pass, 0 fail, 650 expect() calls
# Run specific test suite
bun test test/api.spec.ts
bun test test/request.spec.ts
bun test test/smoke.test.ts
The library follows the original's three-layer architecture:
src/api.ts): Fluent chainable interface using closure-based statesrc/request.ts): HTTP communication, retry logic, file handlingsrc/response.ts): Specialized response classes for different operationsdist/
├── index.js - ESM bundle (31.4 KB)
├── index.cjs - CommonJS bundle
└── *.d.ts - TypeScript definitions
# Install dependencies
bun install
# Build the project
bun run build
# Run tests
bun test
# Type checking
bun run lint
import api from "zotero-client-ts";
// Initialize with API key
const zotero = api("YOUR_API_KEY").library("user", 12345).items().top();
// Fetch items
const response = await zotero.get();
console.log(response.getData());
// Chainable API
const item = await api("KEY").library("user", 123).items("ITEMKEY").version(42).get();
MIT License - see LICENSE file for details.
FAQs
A lightweight, minimalistic TypeScript client for the Zotero API. Complete TypeScript re-implementation with 100% API compatibility, full type safety, and modern ESM/CJS builds.
We found that zotero-client-ts demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.