# webkking-svgcaptch

> ``` npm i webkking-svgcaptcha -S ```

Latest version **1.2.1** (published 2022-06-14) · ISC license · 0 weekly downloads

## Install

```sh
npm install webkking-svgcaptch
pnpm add webkking-svgcaptch
yarn add webkking-svgcaptch
bun add webkking-svgcaptch
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.1 |
| Published | 2022-06-14 |
| First published | 2022-06-14 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | webkking |
| Maintainers | kitking |

## Links

- npm: https://www.npmjs.com/package/webkking-svgcaptch
- npm.io page: https://npm.io/package/webkking-svgcaptch

## Recent versions

- 1.2.1 (latest) — 2022-06-14
- 1.1.1 — 2022-06-14
- 1.0.1 — 2022-06-14
- 1.0.0 — 2022-06-14

## README

# ⭐️ 生成随机验证码 ---- 下载

```
npm i webkking-svgcaptcha -S
```

# ⭐️ 生成随机验证码 ---- 使用

```
const captcha = require('webkking-svgcaptcha')
let temp = captcha.create()
console.log(temp) // {text:'D3DS', data: '<svg></svg>'}
```

# ⭐️ 生成随机验证码 ---- 结合 HTTP 模块

```
const http = require('http')
const captcha = require('webopenfather-captcha')

http.createServer((req, res) => {
    res.setHeader('content-type', 'text/html;charset=utf-8')
    let temp = captcha.create()
    // console.log(temp) // {text:'D3DS', data: '<svg></svg>'}
    res.end(temp.data)
}).listen(3000, () => {
    console.log('启动成功， 访问  http://localhost:3000');
})
```

---
_Source: https://npm.io/package/webkking-svgcaptch · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
