# heixiaozi-captcha

> 这是一个验证码

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

## Install

```sh
npm install heixiaozi-captcha
pnpm add heixiaozi-captcha
yarn add heixiaozi-captcha
bun add heixiaozi-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.2 |
| 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.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | heixiaozi |
| Maintainers | heixiaozi |
| Keywords | heixiaozi |

## Links

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

## Recent versions

- 1.0.2 (latest) — 2022-06-14
- 1.0.1 — 2022-06-14
- 1.0.0 — 2022-06-14

## README

# 🦍 验证码小物件 下载

```
npm i heixiaozi-captcha -S
```

# 🚀 使用 验证码结合 HTTP 模块

```
const captcha = require('heixiaozi-captcha)
let data = captcha.create()
console.log(data)
```

# 🚀 使用 验证码结合 HTTP 模块

const http = require("http");
const captcha = require("heixiaozi-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/heixiaozi-captcha · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
