smalltuotuo-captcha

1.0.1 • Public • Published

☆ 验证码模块

cnpm i smalltuotuo-captcha -S

示例 使用

const http = require('http')
const captcha = require('smalltuotuo-captcha')
let temp = captcha.create()
console.log(temp)

示例 使用(结合 http 模块)

const http = require('http')
const captcha = require('smalltuotuo-captcha')
const temp = captcha.data
console.log(temp)

let app = http.createServer((req,res)=>{
    res.setHeader('content-type','text/html;charset=utf-8')
    let temp = captcha.create()
    res.end(temp.data)
})
app.Listen(3000,()=>{
    console.log('http://localhost:3000')
})

Package Sidebar

Install

npm i smalltuotuo-captcha

Weekly Downloads

2

Version

1.0.1

License

ISC

Unpacked Size

2.1 kB

Total Files

4

Last publish

Collaborators

  • smalltuotuo