jozsef-lib

One library to rule them all...

Usage no npm install needed!

<script type="module">
  import jozsefLib from 'https://cdn.skypack.dev/jozsef-lib';
</script>

README

To install

npm install jozsef-lib

lazyloader

To utilze lazyLoad service during config

let jozsefLib = require('jozsef-lib');

angular.module('jozsefLib')
   .config(function(LazyLoad){
      let str = app.directive('garb', function () {console.log('garb service')});
      LazyLoad.loadFromString('app', str);
      LazyLoad.loadFromUrl('app', '/resources/json/pm.js');
   });