-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implemented a store for Cloudflare Workers KV
- Loading branch information
Showing
8 changed files
with
920 additions
and
932 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [0.1.0] - 2024-01-09 | ||
|
||
- First release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "svelte-kit-connect-upstash-redis", | ||
"version": "0.1.0", | ||
"description": "Upstash Redis session storage for svelte-kit-sessions.", | ||
"name": "svelte-kit-connect-cloudflare-kv", | ||
"version": "0.0.1", | ||
"description": "Cloudflare KV session storage for svelte-kit-sessions.", | ||
"author": "yutak23 <[email protected]> (https://github.com/yutak23)", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]:yutak23/svelte-kit-connect-upstash-redis.git" | ||
"url": "git+ssh://[email protected]:yutak23/svelte-kit-connect-cloudflare-kv.git" | ||
}, | ||
"license": "MIT", | ||
"type": "module", | ||
|
@@ -29,10 +29,10 @@ | |
"ncu": "ncu" | ||
}, | ||
"dependencies": { | ||
"@upstash/redis": "^1.27.1", | ||
"svelte-kit-sessions": "^0.0.6" | ||
}, | ||
"devDependencies": { | ||
"@cloudflare/workers-types": "^4.20231218.0", | ||
"@tsconfig/node18": "^18.2.2", | ||
"@tsconfig/recommended": "^1.0.3", | ||
"@types/express": "^4.17.21", | ||
|
@@ -45,6 +45,7 @@ | |
"eslint-config-airbnb-typescript": "^17.1.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"miniflare": "^3.20231218.1", | ||
"npm-check-updates": "^16.14.12", | ||
"prettier": "^3.1.1", | ||
"typescript": "^5.3.3", | ||
|
@@ -56,15 +57,14 @@ | |
"keywords": [ | ||
"sveltekit", | ||
"svelte-kit", | ||
"redis", | ||
"upstash", | ||
"upstash/redis", | ||
"@upstash/redis", | ||
"cloudflare", | ||
"cloudflare-workers", | ||
"cloudflare-kv", | ||
"kv", | ||
"workers", | ||
"session", | ||
"connect-redis", | ||
"connect", | ||
"session-store", | ||
"session-store-redis", | ||
"svelte-kit-sessions" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.