1.0.1 • Published 2 years ago

hlgsvg-captcha v1.0.1

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

🍎验证码 - 下载

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');
 })