Core Modules

Staffig uses a modular architecture. Activating and scaling core HR tools matches your enterprise operations.

HR & PEOPLE

Modern Human Resources

Manage your workforce with a digital directory, secure employee profiles, and automated smart onboarding workflows.

Explore HR Module arrow_forward
Payroll and Finance Dashboard

Payroll & Finance

Calculate salaries with mathematical accuracy and generate global export files like SEPA and NACHA.

Talent and Growth Dashboard

Talent & Growth

Track candidates through the hiring pipeline and manage performance reviews with structured feedback tools.

OPERATIONS

Enterprise Operations

Control assets, maintain a central knowledge base, and secure your data with detailed audit logs.

Learn About Ops arrow_forward

Implementation Guide

1

Environment Configuration

Set your STAFFIG_ENV variables to initialize your workspace.

2

Module Registration

Use the staffig.registerModule() method during application startup to register your modules.

3

Webhook Integration

Point our secure webhooks to your API endpoints for real-time notifications.

Sample Integration

index.js config.json
/* Initialize Staffig Core Modules */
const staffig = require("@staffig/core");

staffig.init({
  apiKey: process.env.STAFFIG_API_KEY,
  modules: ["payroll", "talent"],
  mode: "production"
});

on("payroll.success", (event) => {
  console.log(`Processed: ${event.total_amount}`);
});

Was this page helpful?

Last updated: May 30, 2026