feat: implement custom node.js sync server and secure extension client with login/register UI

This commit is contained in:
jason
2026-03-03 23:50:26 +08:00
parent 0803f9cc14
commit fc4898a9ee
8 changed files with 629 additions and 99 deletions

14
server/package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "quickpurge-sync",
"version": "1.0.0",
"description": "QuickPurge Sync Server",
"main": "server.js",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"sqlite3": "^5.1.6"
},
"scripts": {
"start": "node server.js"
}
}