Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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 3 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.