{"id":27246169,"url":"https://github.com/limhenry/samarium","last_synced_at":"2026-02-07T21:03:32.609Z","repository":{"id":88683886,"uuid":"81160352","full_name":"limhenry/samarium","owner":"limhenry","description":"GDGKL Event Website Template (2017 Version)","archived":false,"fork":false,"pushed_at":"2017-02-08T12:30:36.000Z","size":152,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-05T00:14:07.398Z","etag":null,"topics":["gdg","google","polymer"],"latest_commit_sha":null,"homepage":"https://tfxkl2017.firebaseapp.com","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/limhenry.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-02-07T03:07:44.000Z","updated_at":"2017-11-03T17:47:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"93dac5e8-ba7f-460f-a9f8-ffe2f913fa8b","html_url":"https://github.com/limhenry/samarium","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/limhenry/samarium","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limhenry%2Fsamarium","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limhenry%2Fsamarium/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limhenry%2Fsamarium/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limhenry%2Fsamarium/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/limhenry","download_url":"https://codeload.github.com/limhenry/samarium/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limhenry%2Fsamarium/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29208176,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T20:33:12.493Z","status":"ssl_error","status_checked_at":"2026-02-07T20:30:47.381Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gdg","google","polymer"],"created_at":"2025-04-10T21:33:47.805Z","updated_at":"2026-02-07T21:03:32.102Z","avatar_url":"https://github.com/limhenry.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Polymer App Toolbox - Starter Kit\n\n[![Build Status](https://travis-ci.org/PolymerElements/polymer-starter-kit.svg?branch=master)](https://travis-ci.org/PolymerElements/polymer-starter-kit)\n\nThis template is a starting point for building apps using a drawer-based\nlayout. The layout is provided by `app-layout` elements.\n\nThis template, along with the `polymer-cli` toolchain, also demonstrates use\nof the \"PRPL pattern\" This pattern allows fast first delivery and interaction with\nthe content at the initial route requested by the user, along with fast subsequent\nnavigation by pre-caching the remaining components required by the app and\nprogressively loading them on-demand as the user navigates through the app.\n\nThe PRPL pattern, in a nutshell:\n\n* **Push** components required for the initial route\n* **Render** initial route ASAP\n* **Pre-cache** components for remaining routes\n* **Lazy-load** and progressively upgrade next routes on-demand\n\n### Migrating from Polymer Starter Kit v1?\n\n[Check out our blog post that covers what's changed in PSK2 and how to migrate!](https://www.polymer-project.org/1.0/blog/2016-08-18-polymer-starter-kit-or-polymer-cli.html)\n\n### Setup\n\n##### Prerequisites\n\nFirst, install [Polymer CLI](https://github.com/Polymer/polymer-cli) using\n[npm](https://www.npmjs.com) (we assume you have pre-installed [node.js](https://nodejs.org)).\n\n    npm install -g polymer-cli\n\n##### Initialize project from template\n\n    mkdir my-app\n    cd my-app\n    polymer init starter-kit\n\n### Start the development server\n\nThis command serves the app at `http://localhost:8080` and provides basic URL\nrouting for the app:\n\n    polymer serve --open\n\n### Build\n\nThis command performs HTML, CSS, and JS minification on the application\ndependencies, and generates a service-worker.js file with code to pre-cache the\ndependencies based on the entrypoint and fragments specified in `polymer.json`.\nThe minified files are output to the `build/unbundled` folder, and are suitable\nfor serving from a HTTP/2+Push compatible server.\n\nIn addition the command also creates a fallback `build/bundled` folder,\ngenerated using fragment bundling, suitable for serving from non\nH2/push-compatible servers or to clients that do not support H2/Push.\n\n    polymer build\n\n### Preview the build\n\nThis command serves the minified version of the app at `http://localhost:8080`\nin an unbundled state, as it would be served by a push-compatible server:\n\n    polymer serve build/unbundled\n\nThis command serves the minified version of the app at `http://localhost:8080`\ngenerated using fragment bundling:\n\n    polymer serve build/bundled\n\n### Run tests\n\nThis command will run [Web Component Tester](https://github.com/Polymer/web-component-tester)\nagainst the browsers currently installed on your machine:\n\n    polymer test\n\n### Adding a new view\n\nYou can extend the app by adding more views that will be demand-loaded\ne.g. based on the route, or to progressively render non-critical sections of the\napplication. Each new demand-loaded fragment should be added to the list of\n`fragments` in the included `polymer.json` file. This will ensure those\ncomponents and their dependencies are added to the list of pre-cached components\nand will be included in the `bundled` build.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flimhenry%2Fsamarium","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flimhenry%2Fsamarium","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flimhenry%2Fsamarium/lists"}