
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@vaadin/angular2-polymer
Advanced tools
angular2-polymer
is a directive factory that aims at bridging the gaps between using Polymer based Web Components in Angular 2 applications.
import { NgModule, CUSTOM_ELEMENTS_SCHEMA, Component } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { PolymerElement } from '@vaadin/angular2-polymer';
@NgModule({
imports: [ BrowserModule ],
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 angular2-polymer
and how to build a working application with Angular 2 data binding and routes.
If you are using Angular CLI in your project, see the specific document for projects created with the ng
command line utility.
The Expense Manager demo is an example of a real world application built using Angular 2 and Polymer web components.
For high quality Polymer web components, see Vaadin Elements and the Polymer Element Catalog.
See the contribution instructions which apply to this project as well.
Familiarize yourself with the code and try to follow the same syntax conventions to make it easier for us to accept your pull requests.
$ git clone https://github.com/vaadin/angular2-polymer.git
$ cd angular2-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
Apache License 2.0
FAQs
Angular 2 support for Polymer elements
The npm package @vaadin/angular2-polymer receives a total of 46 weekly downloads. As such, @vaadin/angular2-polymer popularity was classified as not popular.
We found that @vaadin/angular2-polymer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.