xiaixa-captcha
v1.0.0
Published
使用SVG制作验证码模块
Downloads
4
Readme
安装 npm i xiaixa-captcha -S
使用
const captcha = require('xiaixa-captcha') let temp = captcha.create() console.log(temp) // {text:'D3DS', data: ''}
使用 - 结合 http 模块
const http = require('http') const captcha = require('xiaixa-captcha')
http.createServer((req, res) => { res.setHeader('content-type', 'text/html;charset=utf-8') let temp = captcha.create() // console.log(temp) // {text:'D3DS', data: ''} res.end(temp.data) }).listen(3000, () => { console.log('启动成功, 访问 http://localhost:3000'); })