# tyrcode-captcha

> 仿写验证码

Latest version **1.0.4** (published 2022-06-07) · ISC license · 0 weekly downloads

## Install

```sh
npm install tyrcode-captcha
pnpm add tyrcode-captcha
yarn add tyrcode-captcha
bun add tyrcode-captcha
```

## 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.0.4 |
| Published | 2022-06-07 |
| First published | 2022-06-07 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | hartener |
| Maintainers | hartener |
| Keywords | svg-captcha, captcha, tyr |

## Links

- npm: https://www.npmjs.com/package/tyrcode-captcha
- npm.io page: https://npm.io/package/tyrcode-captcha

## Recent versions

- 1.0.4 (latest) — 2022-06-07
- 1.0.3 — 2022-06-07
- 1.0.2 — 2022-06-07
- 1.0.1 — 2022-06-07
- 1.0.0 — 2022-06-07

## README

# 验证码 - 下载

```
npm i tyrcode-captcha -S
```

# 验证码 - 使用

```
const captcha = require('tyrcode-captcha')
let temp = captcha.create()
console.log(temp) // {text:'D3DS', data: '<svg></svg>'}
```


# 验证码 - 结合HTTP模块

```
const http = require('http')
const captcha = require('tyrcode-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/tyrcode-captcha · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
