diff options
| author | journey-ad <[email protected]> | 2023-03-06 18:57:41 +0800 |
|---|---|---|
| committer | Jad <[email protected]> | 2023-03-06 18:59:42 +0800 |
| commit | c3f18f8b34bd8403a040a263bc8354bc7a9b4eae (patch) | |
| tree | 411352810cfd757b276878eb544d6ebd0e4e6202 /package.json | |
| parent | Update Readme.md (diff) | |
| download | counter-c3f18f8b34bd8403a040a263bc8354bc7a9b4eae.tar.xz counter-c3f18f8b34bd8403a040a263bc8354bc7a9b4eae.zip | |
perf: Delayed writing to database
- Implement delayed writing feature to database for improved performance and reduced write frequency
- Update docs
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json index baf9850..df1b7d6 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "kawaii-counter", + "name": "moe-counter", "version": "1.0.0", "description": "", "main": "index.js", @@ -11,13 +11,13 @@ "author": "journey-ad", "license": "MIT", "dependencies": { + "better-sqlite3": "^8.1.0", "compression": "^1.7.4", "config-yml": "^0.10.3", "express": "^4.17.1", "image-size": "^0.8.3", "mime-types": "^2.1.27", "mongoose": "^5.9.28", - "pug": "^3.0.0", - "sqlite3": "^5.0.0" + "pug": "^3.0.0" } } |