tiny-server-state 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -282,4 +282,11 @@ setUser(prev => ({
282
282
  - Data is stored in memory and will be lost when the server restarts
283
283
  - Don't store sensitive information without proper encryption
284
284
  - Be cautious with TTL values to prevent memory leaks
285
- - Consider implementing rate limiting for state updates if exposed to client requests
285
+ - Consider implementing rate limiting for state updates if exposed to client requests
286
+
287
+
288
+ ## 👨‍💻 About Me
289
+ Visit my portfolio: [deodeepkunj.dev](https://www.deodeepkunj.dev)
290
+
291
+ ## 📘 Blogs
292
+ Read my latest technical write-ups at [Medium](https://medium.com/@deodeepkunj)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tiny-server-state",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Lightweight TTL-enabled in-memory state for Node servers",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",