文件名称:node-svgcaptcha:使用 svg 图像生成验证码的 npm 模块
文件大小:4KB
文件格式:ZIP
更新时间:2024-07-23 12:31:37
JavaScript
节点-svgcaptcha 使用 svg 图像生成验证码的 npm 模块 如何使用: 安装 npm 包: npm install node-svgcaptcha 在您的代码中: app.get('/captcha', function(req, res){ var captcha = require('node-svgcaptcha'); var options = {};//Set your configuration in this object var genCaptcha = captcha(options); if(req.session){//save value in session req.session.captcha = genCaptcha.captchaValue; } //return svg to render in the
【文件预览】:
node-svgcaptcha-master
----package.json(292B)
----index.js(5KB)
----README.md(1KB)
----tests()
--------tests.js(2KB)