{"id":16376405,"url":"https://github.com/rochdev/angular-polymerize","last_synced_at":"2026-03-18T19:15:51.048Z","repository":{"id":27046722,"uuid":"30511929","full_name":"rochdev/angular-polymerize","owner":"rochdev","description":"Use Polymer elements from within AngularJS","archived":false,"fork":false,"pushed_at":"2017-04-22T12:23:33.000Z","size":43,"stargazers_count":2,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-11T15:18:51.265Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/rochdev/angular-polymerize","language":"HTML","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/rochdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-09T00:45:55.000Z","updated_at":"2022-07-29T02:21:04.000Z","dependencies_parsed_at":"2022-08-31T00:01:27.720Z","dependency_job_id":null,"html_url":"https://github.com/rochdev/angular-polymerize","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/rochdev/angular-polymerize","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rochdev%2Fangular-polymerize","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rochdev%2Fangular-polymerize/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rochdev%2Fangular-polymerize/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rochdev%2Fangular-polymerize/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rochdev","download_url":"https://codeload.github.com/rochdev/angular-polymerize/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rochdev%2Fangular-polymerize/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28764049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T00:37:26.264Z","status":"ssl_error","status_checked_at":"2026-01-26T00:37:25.959Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-10-11T03:24:35.836Z","updated_at":"2026-01-31T14:31:01.251Z","avatar_url":"https://github.com/rochdev.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Polymerize [![Build][build-image]][build-url] [![Dependencies][deps-image]][deps-url] [![Version][version-image]][version-url] [![License][license-image]][license-url]\n\nCreates [AngularJS][angular-url] directives with two-way data binding from [Polymer][polymer-url] elements so that they can be used in an AngularJS application.\n\n## Installation\n\n```sh\n$ bower install angular-polymerize\n```\n\n## Usage\n\nBy default, all custom elements are automatically registered as AngularJS directives, which means you can use them as any other AngularJS directive:\n\n```html\n\u003cpaper-input value=\"val\" on-change=\"onChange(val)\"\u003e\n```\n\nPlease note that for this to work, Polymerize must be loaded before Polymer.\n\n## Advanced configuration\n\nIf you need to register an element that was unavailable when the `polymer-ready` event was fired, you can use `polymerizeProvider` to do so:\n\n```js\nvar module = angular.module('app', ['polymerize']);\n\nmodule.config(function(polymerizeProvider) {\n  polymerizeProvider.directive('paperButton'); // single directive\n  polymerizeProvider.directive([\n    'paperCheckbox',\n    'paperInput'\n  ]); // multiple directives\n});\n```\n\nIf you need to create your own directive on top of a Polymer element you may use the `polymerize` service directly from the directive instead:\n\n```js\nvar module = angular.module('app', ['polymerize']);\n\nmodule.directive('paperButton', function(polymerize) {\n  return {\n    restrict: 'E',\n    link: function postLink(scope, element, attrs) {\n      // your code\n\n      polymerize.link(scope, element, attrs);\n    }\n  };\n});\n```\n\n## Example\n\nSee the [example](example) folder for a complete example.\n\n## License\n\n[MIT License][license-url]\n\n[angular-url]: https://angularjs.org\n[bootstrap-url]: https://docs.angularjs.org/api/ng/function/angular.bootstrap\n[build-image]: http://img.shields.io/travis/rochdev/angular-polymerize/master.svg?style=flat-square\n[build-url]: https://travis-ci.org/rochdev/angular-polymerize\n[deps-image]: https://img.shields.io/gemnasium/rochdev/angular-polymerize.svg?style=flat-square\n[deps-url]: https://gemnasium.com/rochdev/angular-polymerize\n[license-image]: http://img.shields.io/badge/license-MIT-red.svg?style=flat-square\n[license-url]: http://en.wikipedia.org/wiki/MIT_License\n[ngapp-url]: https://docs.angularjs.org/api/ng/directive/ngApp\n[polymer-url]: https://www.polymer-project.org\n[version-image]: https://img.shields.io/github/tag/rochdev/angular-polymerize.svg?style=flat-square\n[version-url]: https://github.com/rochdev/angular-polymerize","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frochdev%2Fangular-polymerize","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frochdev%2Fangular-polymerize","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frochdev%2Fangular-polymerize/lists"}