1.0.6 • Published 6 years ago

ceyenne v1.0.6

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

ABOUT

SET UP

  • type 'npm install ceyenne'

TEST

  • run 'npm test'

COMPILE

  • type 'tsc'

USE FRAMEWORK IN 3TH PARTY APPLICATIONS / INCLUDE IN OTHER PROJECT

USAGE IN CODE (in 3th party app):

import {CeyenneLogService} from 'ceyenne;

export class TestPage {

debugger: CeyenneLogService = new CeyenneLogService(true);

constructor(){
  this.debugger.log('hello npm-linked world');
}

}