1.0.3 โ€ข Published 2 years ago

cxk-captcha v1.0.3

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

ไธ‹่ฝฝ๐Ÿ•บ๐Ÿ€:

 npm i cxk-captcha -S

ไฝฟ็”จ๐Ÿ’ƒ๐Ÿ€๏ผš

const captcha = require('cxk-captcha');
let temp = captcha.create();

็ป“ๅˆHTTPๆจกๅ—๐Ÿ‘€๐Ÿ€

const http = require('http')
const captcha = require('cxk-captcha')

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