{"id":14972223,"url":"https://github.com/pascalebeier/bootstrap-validate","last_synced_at":"2025-04-27T07:45:39.298Z","repository":{"id":40366712,"uuid":"93414832","full_name":"PascaleBeier/bootstrap-validate","owner":"PascaleBeier","description":"A simple Form Validation Utility for Bootstrap 3 and Bootstrap 4 for Humans.","archived":false,"fork":false,"pushed_at":"2025-04-18T22:59:23.000Z","size":21442,"stargazers_count":135,"open_issues_count":19,"forks_count":53,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-27T07:45:27.548Z","etag":null,"topics":["bootstrap","bootstrap-3","bootstrap-4","bootstrap3","bootstrap4","form","form-validation","jquery","validate","validation","webpack"],"latest_commit_sha":null,"homepage":"https://bootstrap-validate.js.org","language":"HTML","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/PascaleBeier.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://paypal.me/Kreuztal"]}},"created_at":"2017-06-05T14:51:44.000Z","updated_at":"2025-04-18T22:56:36.000Z","dependencies_parsed_at":"2024-06-19T05:30:24.184Z","dependency_job_id":"5cda3dcf-e9ec-4462-a27b-5d429310efdf","html_url":"https://github.com/PascaleBeier/bootstrap-validate","commit_stats":{"total_commits":185,"total_committers":4,"mean_commits":46.25,"dds":"0.22702702702702704","last_synced_commit":"4fb928c03e91b30553be36834ad21040d0dc24c3"},"previous_names":["pascalebeier/bootstrap-validate","bootstrap-validate/bootstrap-validate"],"tags_count":27,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PascaleBeier%2Fbootstrap-validate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PascaleBeier%2Fbootstrap-validate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PascaleBeier%2Fbootstrap-validate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PascaleBeier%2Fbootstrap-validate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PascaleBeier","download_url":"https://codeload.github.com/PascaleBeier/bootstrap-validate/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251106450,"owners_count":21537168,"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":["bootstrap","bootstrap-3","bootstrap-4","bootstrap3","bootstrap4","form","form-validation","jquery","validate","validation","webpack"],"created_at":"2024-09-24T13:46:35.241Z","updated_at":"2025-04-27T07:45:39.240Z","avatar_url":"https://github.com/PascaleBeier.png","language":"HTML","readme":"# bootstrap-validate\n![GitHub Workflow Status Lint](https://img.shields.io/github/workflow/status/PascaleBeier/bootstrap-validate/Lint?label=ESLint)\n![GitHub Workflow Status Lint](https://img.shields.io/github/workflow/status/PascaleBeier/bootstrap-validate/Unit%20Tests?label=Jest)\n![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/PascaleBeier/bootstrap-validate?label=Latest)\n![npm](https://img.shields.io/npm/dt/bootstrap-validate)\n![GitHub](https://img.shields.io/github/license/PascaleBeier/bootstrap-validate)\n\n\u003e A simple Form Validation Utility for Bootstrap 3, Bootstrap 4 for Humans.\n\n[![Demo](.github/images/demo.gif)](#)\n\n## Supported Versions\n\n| bootstrap-validate Version | Bootstrap Version | Documentation                |\n-----------------------------|-------------------|-------------------------------\n| v1 | Bootstrap 3 | [v1 Download + Docs](https://bootstrap-validate.js.org/v1) |\n| v2 | Bootstrap 4 | [v2 Download + Docs](https://bootstrap-validate.js.org/v2) |\n\n## Documentation\n\nRead the Documentation at [bootstrap-validate.js.org](\u003chttps://bootstrap-validate.js.org\u003e).\n\n## Quick Start\n\n```bash\n$ npm i bootstrap-validate\n```\n\nInclude the bootstrap-validate.js script:\n\n```html\n\u003cscript defer=\"defer\" src=\"bootstrap-validate.js\"\u003e\u003c/script\u003e\n```\n\nWe want the `#name` to be not longer than 30 characters!\n\n```html\n\u003cdiv class=\"form-group\"\u003e\n    \u003clabel class=\"control-label\"\u003eEnter a Name\u003c/label\u003e\n    \u003cinput id=\"name\"\u003e\n\u003c/div\u003e\n\n\u003cscript\u003e\nbootstrapValidate('#name', 'max:30:Your name must not be longer than 30 characters');\n\u003c/script\u003e\n```\n\nValidating an `#email` address couldn't be easier!\n\n```html\n\u003cdiv class=\"form-group\"\u003e\n  \u003clabel for=\"email\" class=\"control-label\"\u003eEnter your E-Mail\u003c/label\u003e\n  \u003cinput class=\"input\" id=\"email\"\u003e\n\u003c/div\u003e\n\n\u003cscript\u003e\nbootstrapValidate('#email', 'email:Enter a valid email address');\n\u003c/script\u003e\n```\n\n## More Features!\n\nSee the v2 Documentation on \u003chttps://bootstrap-validate.js.org/v2/\u003e to\nsee all available validation features, examples, and usage with module bundlers.\n\n## Examples\n\nSee [examples/](Examples) for real-world usage.\n\n## Download\n\nYou can find current Releases under [Releases](\u003chttps://github.com/PascaleBeier/bootstrap-validate/releases\u003e) and\nolder Releases for Bootstrap 3 and Bootstrap 4 in the [Download Archive](https://bootstrap-validate.js.org/v2/download.html).\n\n## Changelog\n\nSee [CHANGELOG](CHANGELOG.md).\n\n## Tests\n\nValidation Rules are at least unit-tested. Use `npm test` to spin up the test suites.\n## License\n\nLicensed under the MIT License, see [LICENSE](LICENSE.md).\n","funding_links":["https://paypal.me/Kreuztal"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpascalebeier%2Fbootstrap-validate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpascalebeier%2Fbootstrap-validate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpascalebeier%2Fbootstrap-validate/lists"}