ceyenne

ceyenne front end shared classes toolkit


Keywords
ceyenne
License
ISC
Install
npm install ceyenne@1.0.6

Documentation

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');
}

}

# # # # # # # # #