![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
angular-polymer
Advanced tools
angular-polymer
is a directive factory that aims at bridging the gaps between using Polymer based Web Components in Angular applications.
Note: Currently Angular-Polymer only works with Angular 2.1.2 and lower, or Angular-CLI 1.0.0-beta.21 and lower. Work is being done to upgrade the library to work the latest Angular & CLI. Want to help Contribute?
import { NgModule, CUSTOM_ELEMENTS_SCHEMA, Component } from '@angular/core';
import { PolymerModule, PolymerElement } from '@vaadin/angular2-polymer';
@NgModule({
imports: [ PolymerModule ],
declarations: [
AppComponent,
PolymerElement('paper-input'),
PolymerElement('vaadin-combo-box')
],
bootstrap: [ AppComponent ],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
})
export class AppModule { }
@Component({
selector: 'app-component',
template: `
<paper-input [(value)]="myValue"></paper-input>
<vaadin-combo-box [(value)]="myValue" [items]="myItems"></vaadin-combo-box>
`
})
class AppComponent {
myValue = 'A';
myItems = ['A', 'B', 'C'];
}
See the overview for a quick start.
See the tutorial for complete instructions on how to use angular-polymer
and how to build a working application with Angular data binding and routes.
If you are using Webpack in your project, see the specific document on how to build angular-polymer apps with webpack.
The Expense Manager demo is an example of a real world application built using Angular and Polymer web components.
For high quality Polymer web components, see the Webcomponents Element Catalog and Vaadin Elements.
Familiarize yourself with the code and try to follow the same syntax conventions to make it easier for us to accept your pull requests.
Discuss / exchange ideas and ask questions here: https://polymer.slack.com/messages/polymer-angular/
$ git clone https://github.com/platosha/angular-polymer.git
$ cd angular-polymer
npm
in your system.$ npm install
For running the tests you need Bower installed.
Then, you can download all bower dependencies needed by the Tests.
$ bower install
Finally, you can run the tests by typing:
$ npm test
Optionally, you can watch for the source changes and keep the tests running automatically:
$ npm run test:w
Apache License 2.0
FAQs
Angular 2 support for Polymer elements
The npm package angular-polymer receives a total of 1 weekly downloads. As such, angular-polymer popularity was classified as not popular.
We found that angular-polymer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.