1.0.1 • Published 2 years ago

smalltuotuo-captcha v1.0.1

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

☆ 验证码模块

cnpm i smalltuotuo-captcha -S

示例 使用

const http = require('http')
const captcha = require('smalltuotuo-captcha')
let temp = captcha.create()
console.log(temp)

示例 使用(结合 http 模块)

const http = require('http')
const captcha = require('smalltuotuo-captcha')
const temp = captcha.data
console.log(temp)

let app = http.createServer((req,res)=>{
    res.setHeader('content-type','text/html;charset=utf-8')
    let temp = captcha.create()
    res.end(temp.data)
})
app.Listen(3000,()=>{
    console.log('http://localhost:3000')
})