
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
@easylabs/node
Advanced tools
The Easy Node.js SDK provides a comprehensive, type-safe solution for server-side payment processing, customer management, and e-commerce functionality. Designed for Node.js applications, Express servers, Next.js API routes, and other backend environments.
📚 View Full Documentation & Examples →
npm install @easylabs/node
# or
yarn add @easylabs/node
# or
pnpm add @easylabs/node
import { createClient } from "@easylabs/node";
// Initialize the client
const easy = await createClient({
apiKey: process.env.EASY_API_KEY,
});
// Create a customer
const customer = await easy.createCustomer({
first_name: "John",
last_name: "Doe",
email: "john@example.com",
});
// Process a checkout
const order = await easy.checkout({
customer_creation: false,
identity_id: customer.data.id,
source: "pi_123",
line_items: [{ price_id: "price_abc", quantity: 2 }],
});
import express from "express";
import { createClient } from "@easylabs/node";
const app = express();
app.use(express.json());
const easy = await createClient({
apiKey: process.env.EASY_API_KEY,
});
app.post("/api/customers", async (req, res) => {
const customer = await easy.createCustomer(req.body);
res.json(customer);
});
app.listen(3000);
📖 See complete examples and API reference in the full documentation
Create and manage customer profiles with full CRUD operations.
Handle payment instruments securely with tokenization and process transfers.
Manage products, prices, and subscription plans for your e-commerce platform.
Complete checkout with line items, supporting both new and existing customers.
The SDK is built with TypeScript and provides comprehensive type definitions for all methods and data structures.
import type {
CreateCustomer,
CreateTransfer,
CustomerData,
ApiResponse,
} from "@easylabs/node";
For issues, questions, or contributions, please open an issue or pull request on GitHub.
ISC
FAQs
Easy Labs SDK for Node.js
The npm package @easylabs/node receives a total of 1 weekly downloads. As such, @easylabs/node popularity was classified as not popular.
We found that @easylabs/node 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.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.