{"id":18739012,"url":"https://github.com/gaubee/myblog","last_synced_at":"2026-01-24T06:03:48.874Z","repository":{"id":149112431,"uuid":"105656607","full_name":"Gaubee/MyBlog","owner":"Gaubee","description":null,"archived":false,"fork":false,"pushed_at":"2017-10-05T16:16:09.000Z","size":230,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-28T17:44:42.974Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Gaubee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2017-10-03T13:42:53.000Z","updated_at":"2021-12-18T09:35:10.000Z","dependencies_parsed_at":"2023-06-18T04:47:19.773Z","dependency_job_id":null,"html_url":"https://github.com/Gaubee/MyBlog","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gaubee%2FMyBlog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gaubee%2FMyBlog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gaubee%2FMyBlog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gaubee%2FMyBlog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Gaubee","download_url":"https://codeload.github.com/Gaubee/MyBlog/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239616547,"owners_count":19669071,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-07T15:32:25.820Z","updated_at":"2025-11-18T12:30:15.213Z","avatar_url":"https://github.com/Gaubee.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### Quickstart\n\nWe've recorded a Polycast to get you up and running with PSK2 fast!\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.youtube.com/watch?v=HgJ0XCyBwzY\u0026list=PLNYkxOF6rcIDdS7HWIC_BYRunV6MHs5xo\u0026index=10\"\u003e\n    \u003cimg src=\"https://img.youtube.com/vi/HgJ0XCyBwzY/0.jpg\" alt=\"Polymer Starter Kit 2 video\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\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\nSecond, install [Bower](https://bower.io/) using [npm](https://www.npmjs.com)\n\n    npm install -g bower\n\n##### Initialize project from template\n\n    mkdir my-app\n    cd my-app\n    polymer init polymer-2-starter-kit\n\n### Start the development server\n\nThis command serves the app at `http://127.0.0.1:8081` and provides basic URL\nrouting for the app:\n\n    polymer serve\n\n### Build\n\nThe `polymer build` command builds your Polymer application for production, using build configuration options provided by the command line or in your project's `polymer.json` file.  \n\nYou can configure your `polymer.json` file to create multiple builds. This is necessary if you will be serving different builds optimized for different browsers. You can define your own named builds, or use presets. See the documentation on [building your project for production](https://www.polymer-project.org/2.0/toolbox/build-for-production) for more information.\n\nThe Polymer Starter Kit is configured to create three builds using [the three supported presets](https://www.polymer-project.org/2.0/toolbox/build-for-production#build-presets):\n\n```\n\"builds\": [\n  {\n    \"preset\": \"es5-bundled\"\n  },\n  {\n    \"preset\": \"es6-bundled\"\n  },\n  {\n    \"preset\": \"es6-unbundled\"\n  }\n]\n```\n\nBuilds will be output to a subdirectory under the `build/` directory as follows:\n\n```\nbuild/\n  es5-bundled/\n  es6-bundled/\n  es6-unbundled/\n```\n\n* `es5-bundled` is a bundled, minified build with a service worker. ES6 code is compiled to ES5 for compatibility with older browsers.\n* `es6-bundled` is a bundled, minified build with a service worker. ES6 code is served as-is. This build is for browsers that can handle ES6 code - see [building your project for production](https://www.polymer-project.org/2.0/toolbox/build-for-production#compiling) for a list.\n* `es6-unbundled` is an unbundled, minified build with a service worker. ES6 code is served as-is. This build is for browsers that support HTTP/2 push.\n\nRun `polymer help build` for the full list of available options and optimizations. Also, see the documentation on the [polymer.json specification](https://www.polymer-project.org/2.0/docs/tools/polymer-json) and [building your Polymer application for production](https://www.polymer-project.org/2.0/toolbox/build-for-production).\n\n### Preview the build\n\nThis command serves your app. Replace `build-folder-name` with the folder name of the build you want to serve.\n\n    polymer serve build/build-folder-name/\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\nIf running Windows you will need to set the following environment variables:\n\n- LAUNCHPAD_BROWSERS\n- LAUNCHPAD_CHROME\n\nRead More here [daffl/launchpad](https://github.com/daffl/launchpad#environment-variables-impacting-local-browsers-detection)\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 build.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgaubee%2Fmyblog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgaubee%2Fmyblog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgaubee%2Fmyblog/lists"}