Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 483 Bytes

readme.md

File metadata and controls

17 lines (14 loc) · 483 Bytes

KWIZ Common Repo

A collection of common helpers and utilities used across KWIZ projects

To get started, configure our modules to your project by calling config:

import { config } from "@kwiz/common";
export const { logger: GetLogger } = config({
    BuildNumber: BuildNumber,
    //send true to have verbose logs and turn on debug mode
    IsLocalDev: IsLocalDev,
    ReleaseStatus: ReleaseStatus,
    //prefix logger with your project name
    ProjectName: "[cms]"
});