{"id":41342307,"url":"https://github.com/jmanuel1/material-search","last_synced_at":"2026-01-23T06:51:56.786Z","repository":{"id":12454627,"uuid":"58379508","full_name":"jmanuel1/material-search","owner":"jmanuel1","description":"A material design search website prototype.","archived":false,"fork":false,"pushed_at":"2023-12-30T22:53:07.000Z","size":24803,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2023-12-30T23:29:15.114Z","etag":null,"topics":["material","material-design","material-search","polymer","search","search-interface","searchbar","web-components"],"latest_commit_sha":null,"homepage":"https://jmanuel1.github.io/material-search/","language":"JavaScript","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/jmanuel1.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}},"created_at":"2016-05-09T13:41:32.000Z","updated_at":"2022-03-01T08:21:55.000Z","dependencies_parsed_at":"2023-12-30T23:28:00.974Z","dependency_job_id":"c09b0fa0-d604-4cf7-9ef7-3daf464a5782","html_url":"https://github.com/jmanuel1/material-search","commit_stats":null,"previous_names":[],"tags_count":3,"template":null,"template_full_name":null,"purl":"pkg:github/jmanuel1/material-search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmanuel1%2Fmaterial-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmanuel1%2Fmaterial-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmanuel1%2Fmaterial-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmanuel1%2Fmaterial-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jmanuel1","download_url":"https://codeload.github.com/jmanuel1/material-search/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmanuel1%2Fmaterial-search/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28682263,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T05:48:07.525Z","status":"ssl_error","status_checked_at":"2026-01-23T05:48:07.129Z","response_time":59,"last_error":"SSL_read: 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":["material","material-design","material-search","polymer","search","search-interface","searchbar","web-components"],"created_at":"2026-01-23T06:51:56.725Z","updated_at":"2026-01-23T06:51:56.777Z","avatar_url":"https://github.com/jmanuel1.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Material Search\n===============\n\nA material design search page prototype. Based on the [Polymer Starter Kit Light\nv1](https://github.com/PolymerElements/polymer-starter-kit) and later upgraded\nto Polymer 3.\n\n![Demonstration of\nmaterial-search](https://cloud.githubusercontent.com/assets/7255867/19464608/9e4247da-94b2-11e6-9a39-7318abb94b7e.gif)\n\nOr see it in action: https://jmanuel1.github.io/material-search/.\n\nTested in Opera, should work in Chrome.\n\n## Development\n\n### Running locally\n\n#### Prerequisites\n\n- [Git](https://git-scm.com)\n- [Yarn](https://yarnpkg.com/)\n- [Python 3.7+](https://www.python.org)\n- [virtualenv](https://virtualenv.pypa.io/en/latest/)\n- [Gulp.js](https://gulpjs.com)\n- [Polymer CLI](https://polymer-library.polymer-project.org/3.0/docs/tools/polymer-cli)\n\n#### Set up\n\nClone the repository.\n\n```bash\n\u003e git clone https://github.com/jmanuel1/material-search.git\n\u003e cd material-search\n```\n\nCreate a virtual Python environment under the `env` directory and enter it.\n\n```bash\n\u003e virtualenv env\n(env) \u003e . env/Scripts/activate  # look up the correct command in virtualenv docs\n```\n\nInstall the dependencies.\n\n```bash\n(env) \u003e yarn\n```\n\nStart up a server in the project directory using Polymer CLI and navigate to\n`localhost:8081` in a browser.\n\n```bash\n(env) \u003e polymer serve\n# Go to localhost:8000 in a browser.\n```\n\n### Build instructions\n\nTo create a development build of the project, run `gulp build`. The build output\nwill be under the `build/dev` directory.\n\n### Developer guide\n\n#### `index.html`\n\nIn the main page, there's a header with tabs and the main content area. The main\ncontent area contains a search bar--in particular, the [`paper-search-bar`\nelement](http://collaborne.github.io/paper-search/components/paper-search/).\nThis is hooked up to three fake results that appear in a `div` (id\n`search-results`) when something is typed into the search bar by the\n`_createItems` method on the app. `_createItems` can be found in\n`scripts/app.js`.\n\n#### `elements/elements.js`\n\nThis file contains all the imports, including those of elements, used in\n`index.html`. This is then loaded as a script module from `index.html`.\n\n#### `styles/app-theme.html`\n\nThis has most of material-search's styling. Much of it is from the Polymer\nStarter Kit v1, but converted to a module for Polymer 3.\n\n### Tests\n\nIntegration tests are under the `test/` directory. Test scripts act on the\nlatest build of the website in the `build/` directory, *not* the files at the\nproject root, so you must build the project before testing. Assuming you've\nalready [set up your development environment](#set-up), you can run the tests\nusing the following:\n\n#### One-time setup\n\n```bash\n\u003e . ./env/Scripts/activate  # `source ./env/bin/activate` in posix\n(env) \u003e pip install -r requirements.txt\n```\n\n#### When you want to run tests\n\n```bash\n# make sure you're in the virtual environment and that there is a development\n# build in ./build/dev\n(env) \u003e gulp test\n```\n\nTest are run on the development build.\n\n#### Writing tests\n\nThe tests are written in Python using Selenium and pytest. Please use type\nannotations and check the code using mypy.\n\n### Code style\n\nHTML, CSS, and JavaScript files are passed through\n[Prettier](https://prettier.io/) whenever they are committed. A Git hook for\nthis purpose should be set up for you after you run `yarn`.\n\n## Roadmap\n\n1. Optimize site through a build process.\n\n\u003c!-- TODO: Announce this --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmanuel1%2Fmaterial-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjmanuel1%2Fmaterial-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmanuel1%2Fmaterial-search/lists"}