1.0.8 • Published 3 years ago

kiss-captcha v1.0.8

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

验证码小物件 --- 下载

npm i kiss-captcha -S

验证码小物件 --- 使用

const captcha = require('kiss-captcha)
let temp = captcha.create()           // {text:'',data:'<svg></svg>'}
console.log(temp.data)                // <svg></svg>

验证码小物件 --- 结合HTTP模块

const http = require('http')
const captcha = require('kiss-captcha')

const server = http.createServer((req,res) => {
    let temp = captcha.create({color:'blue'})    
    res.setHeader('content-type','text/html;charset=utf-8')
    res.end(temp.data)
})
server.listen(3000,() => {
    console.log('启动成功: 访问地址: http://localhost:3000');
})
1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago