{"id":13826817,"url":"https://github.com/ColinEberhardt/applause-button","last_synced_at":"2025-07-09T01:31:35.708Z","repository":{"id":32435974,"uuid":"132181938","full_name":"ColinEberhardt/applause-button","owner":"ColinEberhardt","description":"A zero-configuration medium-style button for adding applause / claps / kudos to web pages and blog posts","archived":false,"fork":false,"pushed_at":"2024-10-18T15:13:58.000Z","size":3917,"stargazers_count":426,"open_issues_count":20,"forks_count":41,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-10-29T18:08:18.733Z","etag":null,"topics":["claps","kudos","medium"],"latest_commit_sha":null,"homepage":"http://applause-button.com/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ColinEberhardt.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":"2018-05-04T19:41:07.000Z","updated_at":"2024-10-27T17:57:49.000Z","dependencies_parsed_at":"2023-01-14T21:15:30.675Z","dependency_job_id":"b3f90d93-3605-4364-ae68-d6f70072ca4c","html_url":"https://github.com/ColinEberhardt/applause-button","commit_stats":{"total_commits":52,"total_committers":6,"mean_commits":8.666666666666666,"dds":"0.28846153846153844","last_synced_commit":"02afd7a1085dcc51021a5badcbaf99d061c173cd"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinEberhardt%2Fapplause-button","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinEberhardt%2Fapplause-button/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinEberhardt%2Fapplause-button/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinEberhardt%2Fapplause-button/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ColinEberhardt","download_url":"https://codeload.github.com/ColinEberhardt/applause-button/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225476383,"owners_count":17480215,"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":["claps","kudos","medium"],"created_at":"2024-08-04T09:01:44.800Z","updated_at":"2025-07-09T01:31:35.653Z","avatar_url":"https://github.com/ColinEberhardt.png","language":"JavaScript","readme":"# Applause Button\n\n[![Backers on Open Collective](https://opencollective.com/applause-button/backers/badge.svg)](#backers)\n[![Sponsors on Open Collective](https://opencollective.com/applause-button/sponsors/badge.svg)](#sponsors)\n[![npm latest version](https://img.shields.io/npm/v/applause-button/latest.svg)](https://www.npmjs.com/package/applause-button)\n[![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release)\n\nA zero-configuration button for adding applause / claps / kudos to web pages and blog-posts.\n\n**NOTICE:** The free and hosted version of this service is no longer operational. If you want to use the applause button on your website you are encouraged to host the back-end yourself using the code from the following repo: https://github.com/ColinEberhardt/applause-button-server. Alternatively, you can use the service hosted by a community member at `https://applause.chabouis.fr`.\n\n## Minimal example\n\nThe applause button is a custom element that can be added directly to the page. Here is a minimal example:\n\n```html\n\u003chead\u003e\n  \u003c!-- add the button style \u0026 script --\u003e\n  \u003clink rel=\"stylesheet\" href=\"dist/applause-button.css\" /\u003e\n  \u003cscript src=\"dist/applause-button.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n  \u003c!-- add the button! --\u003e\n  \u003capplause-button style=\"width: 4rem\" api=\"https://applause.chabouis.fr\" /\u003e\n\u003c/body\u003e\n```\n\nThe above will render an applause button, persisting claps and clap counts. \n\nFor more information, visit the [project website](https://colineberhardt.github.io/applause-button/);\n\n## Browser Support\n\nAll browsers with\n[partial support of Custom Elements](https://caniuse.com/custom-elementsv1); check current state at\n[Browserslist](https://browsersl.ist/#q=partially+supports+custom-elementsv1).\n\n## Development\n\n![Node LTS](https://img.shields.io/node/v-lts/applause-button?logo=nodedotjs)\n\nClone this repo then install dependencies via yarn:\n\n```shell\nyarn\n```\n\nUse `yarn test` to run the test suite. These use Jest as the test runner, and Puppeteer as a headless Chrome instance,\nallowing the applause button to make API requests (with appropriate responses faked within the test code).\n\nYou can build the code and start watching the `src` folder for changes as follows:\n\n```shell\nyarn watch\n```\n\nThen run the following command in another terminal, to serve a test page containing an applause-button:\n\n```shell\nyarn test:serve\n```\n\nNavigate to http://localhost:8081 to view the test page; remember to refresh the page after code changes.\n\n### Releases\n\nAll releases are created automatically via\n[semantic release](https://github.com/semantic-release/semantic-release)\nrunning as a GitHub workflow.\n\n## Contributors\n\nThis project exists thanks to all the people who contribute. \n\u003ca href=\"https://github.com/ColinEberhardt/applause-button/graphs/contributors\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/contributors.svg?width=890\u0026button=false\" /\u003e\u003c/a\u003e\n\n## Backers\n\nThank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/applause-button#backer)]\n\n\u003ca href=\"https://opencollective.com/applause-button#backers\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/backers.svg?width=890\"\u003e\u003c/a\u003e\n\n## Sponsors\n\nSupport this project by becoming a sponsor. Your logo will show up here with a link to your website.\n[[Become a sponsor](https://opencollective.com/applause-button#sponsor)]\n\n\u003ca href=\"https://opencollective.com/applause-button/sponsor/0/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/sponsor/0/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/applause-button/sponsor/1/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/sponsor/1/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/applause-button/sponsor/2/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/sponsor/2/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/applause-button/sponsor/3/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/sponsor/3/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/applause-button/sponsor/4/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/sponsor/4/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/applause-button/sponsor/5/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/sponsor/5/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/applause-button/sponsor/6/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/sponsor/6/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/applause-button/sponsor/7/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/sponsor/7/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/applause-button/sponsor/8/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/sponsor/8/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/applause-button/sponsor/9/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/applause-button/sponsor/9/avatar.svg\"\u003e\u003c/a\u003e\n\n\n","funding_links":["https://opencollective.com/applause-button"],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FColinEberhardt%2Fapplause-button","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FColinEberhardt%2Fapplause-button","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FColinEberhardt%2Fapplause-button/lists"}