
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
shieldpay-api-sdkjs
Advanced tools
FIXLE SDK for the ShieldPay API — payments, anti-spam, VPN blocking and email auth
Official JavaScript/TypeScript SDK for the ShieldPay API.
Anti-spam, VPN blocking, email authentication, and PayPal payments — all in one package.
npm install shieldpay-api-sdkjs
import { ShieldPay } from 'shieldpay-api-sdkjs'
const sp = new ShieldPay({ apiKey: 'sk_live_YOUR_KEY' })
// All calls go to: https://fixle.ch/shieldpay/api/worker=sk_live_YOUR_KEY/...
// Create a PayPal payment
const order = await sp.payment.create({
amount: 49.99,
currency: 'CHF',
return_url: 'https://yoursite.com/success',
cancel_url: 'https://yoursite.com/cancel',
})
window.location.href = order.approve_url // redirect to PayPal
// After PayPal redirects back, capture
const captured = await sp.payment.capture(orderId)
// Check IP reputation (Pro: real IPQS check)
const ip = await sp.security.checkIp('1.2.3.4')
// Passwordless email auth for your users
const { token } = await sp.auth.createToken('user@email.com')
const { verified } = await sp.auth.verifyToken(token)
Your API key is embedded in the URL — no headers needed:
https://fixle.ch/shieldpay/api/worker=sk_live_YOUR_KEY/payment/create
https://fixle.ch/shieldpay/api/worker=sk_live_YOUR_KEY/security/check-ip
https://fixle.ch/shieldpay/api/worker=sk_live_YOUR_KEY/me
| Feature | Free | Pro (1 CHF/mo) |
|---|---|---|
| PayPal payments | ✓ | ✓ |
| Transaction fee | 2% | 0% |
| VPN/Tor blocking | Basic | Full IPQS |
| Auto-fallback | ✗ | ✓ |
| Email alerts | ✗ | ✓ |
Full documentation: https://fixle.ch/shieldpay/SDK/docs/
FAQs
FIXLE SDK for the ShieldPay API — payments, anti-spam, VPN blocking and email auth
The npm package shieldpay-api-sdkjs receives a total of 1 weekly downloads. As such, shieldpay-api-sdkjs popularity was classified as not popular.
We found that shieldpay-api-sdkjs 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
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.