Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
go-captcha-jslib
Advanced tools
⭐️ If it helps you, please give a star.
yarn add go-captcha-jslib
# or
npm install go-captcha-jslib
# or
pnpm install go-captcha-jslib
// Import css
import "go-captcha-jslib/dist/gocaptchalib.global.css"
// Import Module
const GoCaptchaLib = require('go-captcha-jslib')
console.log(GoCaptchaLib)
// OR
import { GoCaptchaLib } from "gocaptchalib";
console.log(GoCaptchaLib)
Bower Tool
bower install wenlng/go-captcha-jslib --save
<!-- Js -->
<script src="/bower_components/go-captcha-jslib/dist/gocaptchalib.global.js"></script>
<!-- css -->
<link href="/bower_components/go-captcha-jslib/dist/gocaptchalib.global.css" rel="stylesheet">
<script>
console.log(window.GoCaptchaLib)
</script>
<!-- Js -->
<script src="https://unpkg.com/go-captcha-jslib@1.0.0/dist/gocaptchalib.global.js"></script>
<!-- css -->
<link href="https://unpkg.com/go-captcha-jslib@1.0.0/dist/gocaptchalib.global.css" rel="stylesheet">
<script>
console.log(window.GoCaptchaLib)
</script>
<div id="click-wrap"/>
<script>
const el = document.getElementById("click-wrap");
const capt = new GoCaptchaLib.Click(el)
capt.mount()
capt.setConfig({
width: 300,
height: 220,
})
capt.setData({
image: 'xxx',
thumb: 'xxx',
})
capt.setEvents({
click(x, y) {
// ..
},
confirm(dots, reset) {
// ...
// reset()
},
refresh() {
// ...
},
close() {
// ...
}
})
</script>
// config = {}
interface ClickConfig {
width?: number;
height?: number;
thumbWidth?: number;
thumbHeight?: number;
verticalPadding?: number;
horizontalPadding?: number;
showTheme?: boolean;
title?: string;
buttonText?: string;
iconSize?: number;
dotSize?: number;
}
// data = {}
interface ClickData {
image: string;
thumb: string;
}
// events = {}
interface ClickEvents {
click?: (x: number, y: number) => void;
refresh?: () => void;
close?: () => void;
confirm?: (dots: Array<ClickDot>, reset:() => void) => boolean;
}
// instance methods
interface ClickInstanceMethods {
setConfig: (config: ClickConfig) => void,
setData: (data: ClickData) => void,
setEvents: (events: ClickEvents) => void,
mount: () => void,
destroy: () => void,
reset: () => void,
clear: () => void,
refresh: () => void,
close: () => void,
}
<div id="slide-wrap"/>
<script>
const el = document.getElementById("slide-wrap");
const capt = new GoCaptchaLib.Slide(el)
capt.mount()
capt.setConfig({
width: 300,
height: 220,
})
capt.setData({
image: 'xxx',
thumb: 'xxx',
thumbWidth: 100;
thumbHeight: 100;
thumbX: 100;
thumbY: 100;
})
capt.setEvents({
click(x, y) {
// ..
},
confirm(point, reset) {
// ...
// reset()
},
refresh() {
// ...
},
close() {
// ...
}
})
</script>
// config = {}
interface SlideConfig {
width?: number;
height?: number;
thumbWidth?: number;
thumbHeight?: number;
verticalPadding?: number;
horizontalPadding?: number;
showTheme?: boolean;
title?: string;
iconSize?: number;
scope ?: boolean;
}
// data = {}
interface SlideData {
thumbX: number;
thumbY: number;
thumbWidth: number;
thumbHeight: number;
image: string;
thumb: string;
}
// events = {}
interface SlideEvents {
move?: (x: number, y: number) => void;
refresh?: () => void;
close?: () => void;
confirm?: (point: SlidePoint, reset:() => void) => boolean;
}
// instance methods
interface SlideInstanceMethods {
setConfig: (config: SlideConfig) => void,
setData: (data: SlideData) => void,
setEvents: (events: SlideEvents) => void,
mount: () => void,
destroy: () => void,
reset: () => void,
clear: () => void,
refresh: () => void,
close: () => void,
}
<div id="slide-region-wrap"/>
<script>
const el = document.getElementById("slide-region-wrap");
const capt = new GoCaptchaLib.SlideRegion(el)
capt.mount()
capt.setConfig({
width: 300,
height: 220,
})
capt.setData({
image: 'xxx',
thumb: 'xxx',
})
capt.setEvents({
click(x, y) {
// ..
},
confirm(dots, reset) {
// ...
// reset()
},
refresh() {
// ...
},
close() {
// ...
}
})
</script>
// config = {}
interface SlideRegionConfig {
width?: number;
height?: number;
thumbWidth?: number;
thumbHeight?: number;
verticalPadding?: number;
horizontalPadding?: number;
showTheme?: boolean;
title?: string;
iconSize?: number;
scope ?: boolean;
}
// data = {}
interface SlideRegionData {
thumbX: number;
thumbY: number;
thumbWidth: number;
thumbHeight: number;
image: string;
thumb: string;
}
// events = {}
interface SlideRegionEvents {
move?: (x: number, y: number) => void;
refresh?: () => void;
close?: () => void;
confirm?: (point: SlideRegionPoint, reset:() => void) => boolean;
}
// instance methods
interface SlideRegionInstanceMethods {
setConfig: (config: SlideRegionConfig) => void,
setData: (data: SlideRegionData) => void,
setEvents: (events: SlideRegionEvents) => void,
mount: () => void,
destroy: () => void,
reset: () => void,
clear: () => void,
refresh: () => void,
close: () => void,
}
<div id="rotate-wrap"/>
<script>
const el = document.getElementById("rotate-wrap");
const capt = new GoCaptchaLib.Rotate(el)
capt.mount()
capt.setConfig({
width: 300,
height: 220,
})
capt.setData({
image: 'xxx',
thumb: 'xxx',
})
capt.setEvents({
click(x, y) {
// ..
},
confirm(dots, reset) {
// ...
// reset()
},
refresh() {
// ...
},
close() {
// ...
}
})
</script>
// config = {}
interface RotateConfig {
width?: number;
height?: number;
thumbWidth?: number;
thumbHeight?: number;
verticalPadding?: number;
horizontalPadding?: number;
showTheme?: boolean;
title?: string;
iconSize?: number;
scope ?: boolean;
}
// data = {}
interface RotateData {
angle: number;
image: string;
thumb: string;
}
// events = {}
interface RotateEvents {
rotate?: (angle: number) => void;
refresh?: () => void;
close?: () => void;
confirm?: (angle: number, reset:() => void) => boolean;
}
// instance methods
interface ClickInstanceMethods {
setConfig: (config: ClickConfig) => void,
setData: (data: ClickData) => void,
setEvents: (events: ClickEvents) => void,
mount: () => void,
destroy: () => void,
reset: () => void,
clear: () => void,
refresh: () => void,
close: () => void,
}
<div id="button-wrap"/>
<script>
const el = document.getElementById("button-wrap");
const capt = new GoCaptchaLib.Button(el)
capt.mount()
capt.setConfig({
width: 200,
height: 28,
})
capt.setState({
title: 'xxx',
type: 'default',
clickEvent: () => {console.log('hello ok')},
})
</script>
export interface ButtonConfig {
width?: number;
height?: number;
verticalPadding?: number;
horizontalPadding?: number;
}
interface ButtonState {
config?: CaptchaConfig;
disabled?: boolean;
type?: "default" | "warn" | "error" | "success";
title?: string;
clickEvent?: ()=>void;
}
// instance methods
interface ButtonInstanceMethods {
setConfig: (config: ButtonConfig) => void,
setState: (data: ButtonState) => void,
mount: () => void,
destroy: () => void,
}
FAQs
This is the javascript library for go-captcha
The npm package go-captcha-jslib receives a total of 272 weekly downloads. As such, go-captcha-jslib popularity was classified as not popular.
We found that go-captcha-jslib demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.