1.0.4 • Published 8 years ago

fdback.common v1.0.4

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

fdback.Common Library

Installation and Usage

Create Node Application

mkdir fdback.tests
cd fdback.tests
npm init

Install Dependencies

Install Dependencies for Logging

npm install bunyan bunyan-rotating-file-stream

Install fdback.Common library

npm install fdback.common --registry https://Anc9gY3ZsFsG96zyyaHP@repo.fury.io/rayburks/  

Usage

Create a script index.js with the following content:

'use strict';

var fdbackcommonlib = require('fdback.common');
let logger = new fdbackcommonlib.Logger();
logger.info('Hello World');

Run script

node index.js