ksc-ng
======
A series of angular factories and services revolving around models, async data
binding, sharing and segmenting.
Using as a dependency
1. Install
bower install ksc-ng
2. Link it in your app
3. Use components as dependency
example ?= angular.module 'example', ['ksc']
example.factory 'namespace.endpointArchetypeFactory', [
'ksc.RestList',
(RestList) ->
# ...
Tip: check out the example implementations in folder archetypes/
Developing
Quick installation usage manual
$3
- npm (comes with nodejs)
- make
$3
git clone https://github.com/gvarsanyi/ksc-ng.git
cd ksc-ng
$3
npm update
#### If you have problems with npm, try:
npm cache clean
npm update
$3
make dist
Creates dist/ folder with the following files:
- ksc.js
- ksc-sans-comments.js
- ksc.min.js
- ksc.min.js.gz
Minifier also checks for unused chunks of code.
$3
make doc
See generated docs at
/doc/index.html$3
make test
See test coverage details at /test/coverage/Chrome/index.html$3
make full-test
Be sure to configure test/sauce.json or your bash environment for your sauce account.
See test coverage details at /test/coverage//index.html$3
make lint$3
make all
Does not do full-test (Chrome-test only)