1.0.0 • Published 2 years ago

qianxixi-svg_captcha v1.0.0

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

验证码使用

const captcha = require('qianxixi-svg_captcha')
let Yzm = captcha.create()
console.log(Yzm)

Http联合使用

const http = require('http')
const captcha = require('qianxixi-svg_captcha')

http.createServer((req,res)=>{
    res.setHeader('content-type','text/html;charset=utf-8')
    let Yzm = captcha.create()
    res.end(Yzm)
}).listen(3000,() =>{
    console.log('启动成功')
})