1.0.1 • Published 3 years ago
svg-1 v1.0.1
验证码下载 0312C560.png
npm i barrthree-captcha -S验证码使用 0312ADBC.png
const captcha = require('barrthree-captcha')
let temp = captcha.create()
console.log(temp)验证码结合HTTP模块 ❤
const http = require('http')
const captcha = require('barrthree-captcha')
http.createServer((req, res) => {
    res.setHeader('content-type', 'text/html;charset=utf-8')
    let temp = captcha.create()
    res.end(temp.data)
}).listen(3004, () => {
    console.log('启动成功, 访问  http://localhost:3004');
})