{"id":13777281,"url":"https://github.com/zizzamia/ng-tasty","last_synced_at":"2025-04-04T06:08:07.161Z","repository":{"id":19250642,"uuid":"22486094","full_name":"Zizzamia/ng-tasty","owner":"Zizzamia","description":"A tasty collection of reusable UI components for Angular, like grandma used to make. Like Table directive, WebSocket / Debounce / Throttle service, Range / Camelize / Slugify filters","archived":false,"fork":false,"pushed_at":"2020-09-29T13:12:46.000Z","size":1314,"stargazers_count":434,"open_issues_count":79,"forks_count":64,"subscribers_count":21,"default_branch":"master","last_synced_at":"2024-04-25T21:45:36.236Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Zizzamia.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-31T21:41:16.000Z","updated_at":"2024-03-19T14:49:18.000Z","dependencies_parsed_at":"2022-07-28T23:18:59.365Z","dependency_job_id":null,"html_url":"https://github.com/Zizzamia/ng-tasty","commit_stats":null,"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zizzamia%2Fng-tasty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zizzamia%2Fng-tasty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zizzamia%2Fng-tasty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zizzamia%2Fng-tasty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Zizzamia","download_url":"https://codeload.github.com/Zizzamia/ng-tasty/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247128751,"owners_count":20888235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-03T18:00:40.906Z","updated_at":"2025-04-04T06:08:07.141Z","avatar_url":"https://github.com/Zizzamia.png","language":"JavaScript","funding_links":[],"categories":["Directive"],"sub_categories":[],"readme":"# #ngTasty \n[![Bower version](https://badge.fury.io/bo/ng-tasty.svg)](https://github.com/Zizzamia/bower-ng-tasty) [![NPM version](https://badge.fury.io/js/ng-tasty.svg)](https://www.npmjs.org/package/ng-tasty) [![NPM Downloads](http://img.shields.io/npm/dm/ng-tasty.svg)](https://www.npmjs.org/package/ng-tasty) [![Build Status](https://secure.travis-ci.org/Zizzamia/ng-tasty.svg)](https://travis-ci.org/Zizzamia/ng-tasty) [![Coverage Status](https://coveralls.io/repos/Zizzamia/ng-tasty/badge.svg?branch=master)](https://coveralls.io/r/Zizzamia/ng-tasty?branch=master)\n\u003e A lightweight, flexible, and tasty collection of reusable UI components for [AngularJS](https://angularjs.org/), like grandma used to make.\n\nLive demo visit http://zizzamia.com/ng-tasty/\n\n## Quick start\n\nInstalling via [Bower](bower)\n```\nbower install ng-tasty\n```\nor installing via [NPM](npm)\n```\nnpm install ng-tasty\n```\n\nInclude the required bower component:\n``` html\n\u003cscript src=\"bower_components/ng-tasty/ng-tasty-tpls.min.js\"\u003e\u003c/script\u003e\n```\n\nInject the `ngTasty` module into your app:\n``` JavaScript\nangular.module('myApp', ['ngTasty']);\n```\n\n\n## Development\nFor running the dev environment you just need install\nall the dependencies by `npm`, the [node package manager][npm-site]. \n\n```\nnpm install -g bower\nnpm install -g gulp\nnpm install -g http-server\nnpm install -g protractor\nwebdriver-manager update\nnpm install\nbower install\n```\n\nRun dev environment, it's a watch script with several task running\nlike jshint, html2js, build and unit test on the js build files.\n```\ngulp build\n```\n\nDuring development keep running all main gulp task by using the `watch` task.\n```\ngulp watch\n```\n\n#### Run demo app\n\nWe have pre-configured the demo with a simple development web server.  \nHere the [Website Readme](https://github.com/Zizzamia/ng-tasty/blob/master/website/README.md).\n\n\n#### Unit Tests\n\nThe easiest way to run the unit tests is to use the supplied gulp script:\n\n```\ngulp test\n```\n\n## Docs\n\nThe main docs you will find at http://zizzamia.com/ng-tasty/ , here the list of all components, service,\nfilters supported.\n\n#### Component\n\n- Table : http://zizzamia.com/ng-tasty/directive/table/simple\n- Table server side : http://zizzamia.com/ng-tasty/directive/table-server-side/simple\n\n#### Service\n\n- WebSocket : http://zizzamia.com/ng-tasty/service/websocket\n- Debounce : http://zizzamia.com/ng-tasty/service/debounce\n- Throttle : http://zizzamia.com/ng-tasty/service/throttle\n\n#### Filter\n\n- Filter Int : http://zizzamia.com/ng-tasty/filter/filter-int\n- Range : http://zizzamia.com/ng-tasty/filter/\n- Camelize : http://zizzamia.com/ng-tasty/filter/camelize\n- Slugify : http://zizzamia.com/ng-tasty/filter/slugify\n\n\n## Benchpress\nBenchpress allows creation and sampling of macro benchmarks to compare performance of real world web applications.\n```\nnpm install -g benchpress\n```\n\nBower install all benchmark dependencies\n```\ncd benchmarks/dist/\nbower install\n```\n\nRun ngTasty benchmark from base folder\n```\nbower install\nprotractor benchmarks/protractor.conf.js --specs benchmarks/dist/benchmark.spec.js\n```\n\nOpen benchmark with Chrome\n```\nhttp-server -p 8000\nhttp://localhost:8000/benchmarks/dist/\n```\n\n## Latest Benchmark v0.5.2\n\nngtasty.table.reference\n```\n          gcAmount |   gcAmountInScript |             render |             script\n------------------ | ------------------ | ------------------ | ------------------\n            621.10 |             194.23 |              11.14 |               9.83\n```\nngtasty.table.collection\n```\n          gcAmount |   gcAmountInScript |             render |             script\n------------------ | ------------------ | ------------------ | ------------------\n            766.28 |               0.00 |              11.06 |              11.17\n```\nngtasty.table.equality\n```\n          gcAmount |   gcAmountInScript |             render |             script\n------------------ | ------------------ | ------------------ | ------------------\n          29557.73 |           41947.09 |              10.86 |             110.40\n```\nMore about how I run this benchmark on my talk [#ngTasty Building high performance measurable directives](https://www.youtube.com/watch?v=e6J_JZaIOAQ) at ngconf\n\n\n## Changelog\n\n[https://github.com/Zizzamia/ng-tasty/CHANGELOG.md](https://github.com/Zizzamia/ng-tasty/blob/master/CHANGELOG.md)\n\n\n## Who's using #ngTasty? \n- [Twitter](https://twitter.com) Internal Tools\n- [Opentaste](http://opentaste.co) Admin\n\n\n## Creator\n\nDesigned and built by Leonardo Zizzamia, like grandma used to make.\n\n- \u003chttp://twitter.com/zizzamia\u003e\n- \u003chttp://github.com/zizzamia\u003e\n\nTasty Contributors: [@proudlygeek](https://twitter.com/proudlygeek), [@wesww](https://twitter.com/w3sw), [@aganglada](https://twitter.com/aganglada), [@alexcasalboni](https://twitter.com/alex_casalboni), [@bogdan-alexandrescu](https://twitter.com/balx), [@yagoferrer](https://twitter.com/jsYago)\n\n[bower]: https://github.com/Zizzamia/bower-ng-tasty\n[bower-badge]: https://badge.fury.io/bo/ng-tasty.svg\n[npm-site]: https://www.npmjs.org/\n[npm]: https://www.npmjs.org/package/ng-tasty\n[npm-badge]: https://badge.fury.io/js/ng-tasty.svg\n[npm-downloads]: http://img.shields.io/npm/dm/ng-tasty.svg\n[travis]: https://travis-ci.org/Zizzamia/ng-tasty\n[travis-badge]: https://secure.travis-ci.org/Zizzamia/ng-tasty.svg\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzizzamia%2Fng-tasty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzizzamia%2Fng-tasty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzizzamia%2Fng-tasty/lists"}