shantu / LearningPolymer

2 stars 0 forks source link

Polymer best practices #9

Open shantu opened 7 years ago

shantu commented 7 years ago

https://divshot.com/blog/web-components/polymer-and-bower-getting-it-right/ https://divshot.com/blog/web-components/polymer-app-structure-tips/ https://www.webcomponents.org/community/articles/web-components-best-practices https://coderwall.com/p/pvcoxg/complex-apps-in-polymer-js https://divshot.com/blog/web-components/exploring-googles-material-design-with-polymer/

souman-technicise commented 7 years ago

Api call

<iron-ajax
    auto
    url="https://www.googleapis.com/youtube/v3/search"
    params='{"part":"snippet", "q":"polymer", "key": "YOUTUBE_API_KEY", "type": "video"}'
    handle-as="json"
    on-response="handleResponse"
    debounce-duration="300"></iron-ajax>
souman-technicise commented 7 years ago

http://frontendinsights.com/polymer-rest-api-using-iron-ajax/