Skip to content

Public Record is an attempt to manage logging or other data generated from running front end code.

Notifications You must be signed in to change notification settings

mycomosi/public-record

Repository files navigation

Public Record

A configurable shared public record of ui environment managed console logging

Linked script example:


let level = 'info';
let options = {};
publicRecord.setOptions(options);
publicRecord.logMessage(level, 'This is %s message #%d', 'dynamic', 1);
// Outputs: This is dynamic message #1

ES Module Usage:


import {publicCreate} from "../../dist/publicCreate";
let options = {};
let publicRecord = publicCreate(options);
let level = 'info';

publicRecord.logMessage(level, 'This is %s message #%d', 'dynamic', 1);
// Outputs: This is dynamic message #1

Getting Started

To begin, clone this project and run


npm install
npm run release

Then, run a web server such as http-server Go to the root of the project to read the documentation

About

Public Record is an attempt to manage logging or other data generated from running front end code.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published