Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wenlng/go-captcha-example
This is the example of GoCaptcha
https://github.com/wenlng/go-captcha-example
captcha captcha-example go-captcha recaptcha
Last synced: 2 days ago
JSON representation
This is the example of GoCaptcha
- Host: GitHub
- URL: https://github.com/wenlng/go-captcha-example
- Owner: wenlng
- License: mit
- Created: 2021-11-22T14:19:31.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-12-27T12:36:20.000Z (22 days ago)
- Last Synced: 2025-01-08T18:08:01.362Z (9 days ago)
- Topics: captcha, captcha-example, go-captcha, recaptcha
- Language: JavaScript
- Homepage:
- Size: 13.7 MB
- Stars: 59
- Watchers: 2
- Forks: 22
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Go Captcha
Go Captcha Example Projects
> English | [中文](README_zh.md)
>Go Captcha is a behavior CAPTCHA, which implements text click verification, slide verification and rotation verification.
⭐️ If it helps you, please give a star.
- GoCaptcha:[https://github.com/wenlng/go-captcha](https://github.com/wenlng/go-captcha)
- GoCaptcha Document:[http://gocaptcha.wencodes.com](http://gocaptcha.wencodes.com)
- Example Project:[https://github.com/wenlng/go-captcha-example](https://github.com/wenlng/go-captcha-example)
- Go Assets File:[https://github.com/wenlng/go-captcha-assets](https://github.com/wenlng/go-captcha-assets)
- Javascript Library:[https://github.com/wenlng/go-captcha-jslib](https://github.com/wenlng/go-captcha-jslib)
- Vue Package:[https://github.com/wenlng/go-captcha-vue](https://github.com/wenlng/go-captcha-vue)
- React Package:[https://github.com/wenlng/go-captcha-react](https://github.com/wenlng/go-captcha-react)
- Angular Package:[https://github.com/wenlng/go-captcha-angular](https://github.com/wenlng/go-captcha-angular)
- Svelte Package:[https://github.com/wenlng/go-captcha-svelte](https://github.com/wenlng/go-captcha-svelte)
- Solid Package:[https://github.com/wenlng/go-captcha-solid](https://github.com/wenlng/go-captcha-solid)
- Online Demo:[http://gocaptcha.wencodes.com/demo](http://gocaptcha.wencodes.com/demo)
- ...
```shell
git clone https://github.com/wenlng/go-captcha-example.git
cd go-captcha-example
go mod download
go run main.go
```Open in browser: http://127.0.0.1:9001/go-captcha-example
### Directory structure
```text
|-internal
|-app
|-cache
|-logic
|-captdata
|-click_basic.go // Generation data for text click
|-click_shape.go // Generation data for shape click
|-rotate_basic.go // Generation data for rotate
|-slide_basic.go // Generation data for slide
|-slide_region.go // Generation data for drag region
|-checkdata
|-click.go // Check data for text
|-rotate.go // Check data for rotate
|-slide.go // Check data for slide
|-web
|-native // Js+Html+Css example
|-bower // Js+Html+Css example, bower tool
|-vue // Vue3 example
|-vue2 // Vue2 example
|-react // React example
|-angular // Angular example
|-solid // Solid example
|-svelte // Svelte example
```