a collection of ui widgets and other nice things.
npm i kd.js varmain=newkd.View;main.appendToDomBody();varinput=newkd.InputView;varform=newkd.View;form.addSubView(input);form.addSubView(newkd.ButtonView({title: 'i\'m a button. type in your name and click on me',callback: function(){alert('sup '+input.getValue())}}));vartabs=newkd.TabView({hideHandleCloseIcons: true,paneData: [{title: 'tab1',partial: 'that\'s me, tab1'},{title: 'form',view: form}]});main.addSubView(tabs);Type make example to checkout some examples.
To watch lib and build standalone umd package into dist folder upon changes, type: make development-dist
If you want to recompile each coffee individually into build folder, type: make development
Since package.json exposes only build folder; if you are bundling kd.js with browserify, second method (along with a npm link) might be a better option.
mit