
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@condor-labs/ceb-compliance-utils
Advanced tools
In order to make things modular, we developed this utility library to be used in @condor-labs
To use the library you just need to follow the following steps Install the library with npm
npm install @condor-labs/ceb-compliance-utils
IMPORTANT: Before using any dataCollector method, you must call the start function ONCE at the begining of your application so that the dataCollector connects properly to mongoDB
await dataCollector.start();
const { dataCollector, utils } = require("../../library/index");
async function init() {
try {
/* dataCollector tool */
console.log("Starting Data Collector Module...");
//Make sure this method is called before using any method
await dataCollector.start();
console.log("Fetching profession using dataCollector...");
const response = await dataCollector.getSettingsByProfession(159);
console.log(response.nameProfession);
/* utils tool */
const params = {
ownerId: 123,
trigger: "UNIT_TEST",
};
const jobIdCompound = utils.generateJobId(params);
console.log(response.nameProfession);
} catch (error) {
console.error(error);
}
}
init();
- Go to the example folder
- Create a .env file and set the values
- Run script `node utils/index.js`, `node dataCollector/index.js`, so on...
The original author and current lead maintainer of this module is the @condor-labs development team.
More about Condorlabs Here.
FAQs
Group of utility libraries from CEB Compliance
We found that @condor-labs/ceb-compliance-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.