fdback-common library
npm install fdback.common
fdback.Common Library
=====================
shell
mkdir fdback.tests
cd fdback.tests
npm init
`
$3
#### Install Dependencies for Logging
`shell
npm install bunyan bunyan-rotating-file-stream
`
#### Install fdback.Common library
`shell
npm install fdback.common --registry https://Anc9gY3ZsFsG96zyyaHP@repo.fury.io/rayburks/
`
$3
Create a script index.js with the following content:
`js
'use strict';
var fdbackcommonlib = require('fdback.common');
let logger = new fdbackcommonlib.Logger();
logger.info('Hello World');
`
$3
`shell
node index.js
``