first commit

This commit is contained in:
Frank John Begornia
2026-04-02 14:58:00 +08:00
commit c38837b552
9 changed files with 1394 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "qr-code-api",
"version": "1.0.0",
"description": "Simple Node.js micro API that returns QR code PNG images",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^5.2.1",
"qrcode": "^1.5.4"
}
}