Scribe

simple node.js logging module

View the Project on GitHub belbis/scribe

               _ _          
              (_) |         
 ___  ___ _ __ _| |__   ___ 
/ __|/ __| '__| | '_ \ / _ \
\__ \ (__| |  | | |_) |  __/
|___/\___|_|  |_|_.__/ \___|

NPM Version Build Status Coverage Status Dependency Status

Installing

To install the latest release with npm run:

npm install scribe

to install the development version from github run:

npm install "git+https://github.com/belbis/multi-cache"

Introduction

usage

stdout example:

var scribe = require("scribe");

var logger = scribe.getLogger();
var scr = new scribe.scriptura.Console();
logger.add(scr);
logger.log("shaken, not stirred.");

file example:

var scribe = require("scribe");

var logger = scribe.getLogger();
var scr = new scribe.scriptura.File();
logger.add(scr);
logger.log("shaken, not stirred.");

Amazon AWS SQS example:

var scribe = require("scribe");

var logger = scribe.getLogger();
var scr = new scribe.scriptura.SQS();
logger.add(scr);
logger.log("shaken, not stirred.");

disclaimer

this project is currently in development

future

expand scriptura, extend testing