hlgsvg-captcha
v1.0.1
Published
这是SVG验证码
Downloads
2
Maintainers
Readme
🍎验证码 - 下载
npm i svg-captcha -S
🍌-使用
const captcha = repuire('hlgsvg-captcha')
let temp = captcha.create()
console.log(temp) //{text:'sd2d',data:'<svg></svg>'}
#🍌-结合HTTP模块
// //导入模块
const http = require('http')
const svgCaptcha = require'hlgsvg-captcha')
//使用
//创建web服务器
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');
})