fdback.common
v1.0.4
Published
fdback-common library
Readme
fdback.Common Library
Installation and Usage
Create Node Application
mkdir fdback.tests
cd fdback.tests
npm initInstall Dependencies
Install Dependencies for Logging
npm install bunyan bunyan-rotating-file-streamInstall fdback.Common library
npm install fdback.common --registry https://[email protected]/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