{"id":24765713,"url":"https://github.com/jsmithdev/jamiesmiths","last_synced_at":"2026-05-01T12:31:55.139Z","repository":{"id":67600883,"uuid":"115351001","full_name":"jsmithdev/jamiesmiths","owner":"jsmithdev","description":"(WIP) New code base for jamiesmiths.com","archived":false,"fork":false,"pushed_at":"2019-10-10T05:11:17.000Z","size":12285,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T15:36:31.020Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jsmithdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-12-25T16:35:29.000Z","updated_at":"2019-10-10T05:11:18.000Z","dependencies_parsed_at":"2023-07-12T14:01:13.294Z","dependency_job_id":null,"html_url":"https://github.com/jsmithdev/jamiesmiths","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jsmithdev/jamiesmiths","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsmithdev%2Fjamiesmiths","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsmithdev%2Fjamiesmiths/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsmithdev%2Fjamiesmiths/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsmithdev%2Fjamiesmiths/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jsmithdev","download_url":"https://codeload.github.com/jsmithdev/jamiesmiths/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsmithdev%2Fjamiesmiths/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32497810,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-01-28T23:15:31.100Z","updated_at":"2026-05-01T12:31:55.110Z","avatar_url":"https://github.com/jsmithdev.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jamiesmiths\n\nThis is the new code base for main personal site [https://JamieSmiths.com](https://JamieSmiths.com).\n\nIt was scaffolded out using the polymer-cli tool; Chose for rapid generation and was curious on what's changed since polymer ≤ v1.\n\nLeaving more on that below of anyone finds this and wants to explore.\n\n### Setup\n\nIf anyone wants to use this for their own thing, here's the setup to get it going...\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%2Fjsmithdev%2Fjamiesmiths","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjsmithdev%2Fjamiesmiths","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsmithdev%2Fjamiesmiths/lists"}