1.0.0 • Published 2 years ago

@elixxrades/marc v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

MARC Readme.md

  • Marc is a functional logger.

  • Checkout test.js or test.ts

  • Example Code:

    • Typescript
import chalk from "chalk";
import MARC, { IOptions, ITypes } from "./marc.js";
import Express from "express"

const app = Express()
const marc = new MARC({
  name: "MARC",                                     //* Logger Name
  cleanUp: true,                                    //* Removes all log files then creates new ones instead. dont use with code folder all removes.
  types: [{
    name: "TEST",                                   //* Type Name Used at line:36
    hexColor: chalk.bgBlueBright,                   //* Type Color 
    textSequence: "\\/%N - %TP\\/ > \"%T\" > %D",   /**
     *? Text sequence.
     * %TP Debug Type [Required]
     * %N  Logger Name
     * %T  Time
     * %D  Data Text [Required]
     *
     * %PD Process ID (PID)
     * %PP Process Platform
     * %PA Process Arch
     * %NV Node Version
     * %PU Process User
   */
    textColor: chalk.bgRed                          //* Type Text Color
  } as ITypes],
  logDir: process.cwd() + "/logs/",                 //* Select Log directory
  object2string: true,                              //* Converts objects to string 
  useDefaultTypes: true                             //* Use default types [INFO, DEBUG, ERROR]
} as IOptions);

var testData = {
  m: "a",
  r: "c",
  e: "l",
  i: "x"
};

var testFunc = function () {
  console.log("testfcrunned");
};

(async () => {
  try {
    await marc.start();
    await marc.log("INFO", "info test", testFunc);
    await marc.log("DEBUG", "debug test", testData, testFunc);
    await marc.log("TEST", "ooOOOOOOoo")
  } catch (e) {
    console.log(e)
  }
})();

app.use(marc.express())
app.get("/", (req: Express.Request, res: Express.Response) => {
  res.send("essa")
})

app.listen(3000)
    • Javacript
const MARC = require("./build/marc.js");
const chalk = require("chalk");

const express = require("express");
const app = express();

const marc = new MARC({
  name: "MARC", //* Logger Name
  cleanUp: true, //* Removes all log files then creates new ones instead. dont use with code folder all removes.
  types: [
    {
      name: "TEST", //* Type Name Used at line:36
      hexColor: chalk.bgBlueBright, //* Type Color
      textSequence: '\\/%N - %TP\\/ > "%T" > %D',
      /**
       *? Text sequence.
       * %TP Debug Type [Required]
       * %N  Logger Name
       * %T  Time
       * %D  Data Text [Required]
       *
       * %PD Process ID (PID)
       * %PP Process Platform
       * %PA Process Arch
       * %NV Node Version
       * %PU Process User
       */ textColor: chalk.bgRed, //* Type Text Color
    },
  ],
  logDir: process.cwd() + "/logs/", //* Select Log directory
  object2string: true, //* Converts objects to string
  useDefaultTypes: true,
});

marc.start();

marc.log("TEST", "Node Version", process.version);
marc.log("INFO", "Arch", process.arch);
marc.log("DEBUG", "Cpu Usage", process.cpuUsage());
marc.log("ERROR", "Little Error", process.ppid);

app.use(marc.express());
app.get("/", (req, res) => {
  res.send("essa");
});

app.listen(3000);