-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
50 lines (39 loc) · 1.03 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const express = require('express')
const app = express()
app.use(express.json())
app.use(express.urlencoded({ extended: true }))
app.get('/', (req, res)=>{
res.send("You are in the server");
})
const PORT = 3000
app.listen(PORT, () => {
console.log(`listening on port ${PORT}`)
})
module.exports = app
// async function create(dataForQRcode, center_image, width, cwidth) {
// const canvas = createCanvas(width, width);
// QRCode.toCanvas(
// canvas,
// dataForQRcode,
// {
// errorCorrectionLevel: "H",
// margin: 1,
// color: {
// dark: "#000000",
// light: "#ffffff",
// },
// }
// );
// const ctx = canvas.getContext("2d");
// const img = await loadImage(center_image);
// const center = (width - cwidth) / 2;
// ctx.drawImage(img, center, center, cwidth, cwidth);
// return canvas.toDataURL("image/png");
// }
// async function main() {
// const qrCode = await create(
// "http://shauryamuttreja.com/qr/",
// );
// console.log(qrCode);
// }
// main();