
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@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 58 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.