# barrthree-captcha

> ``` npm i barrthree-captcha -S ``` # 验证码使用 🐝 ``` const captcha = require('barrthree-captcha') let temp = captcha.create() console.log(temp) ``` # 验证码结合HTTP模块 🐝 ``` const http = require('http') const captcha = require('barrthree-captcha') ht

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

## Install

```sh
npm install barrthree-captcha
pnpm add barrthree-captcha
yarn add barrthree-captcha
bun add barrthree-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.1 |
| Published | 2022-06-06 |
| First published | 2022-06-06 |
| 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 | barrthree |
| Maintainers | barrthree |
| Keywords | captcha |

## Links

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

## Recent versions

- 1.0.1 (latest) — 2022-06-06

## README

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

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