javascript-solid-server 0.0.169 → 0.0.170
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.
- package/.claude/settings.local.json +27 -1
- package/README.md +1 -0
- package/package.json +1 -1
- package/src/handlers/git.js +2 -2
|
@@ -379,7 +379,33 @@
|
|
|
379
379
|
"Bash(terser losos/store.js -m -c)",
|
|
380
380
|
"Bash(terser losos/registry.js -m -c)",
|
|
381
381
|
"Bash(terser losos/losos.js -m -c)",
|
|
382
|
-
"Bash(DATA_ROOT=/tmp/whatever node --test test/url.test.js)"
|
|
382
|
+
"Bash(DATA_ROOT=/tmp/whatever node --test test/url.test.js)",
|
|
383
|
+
"Bash(gh run *)",
|
|
384
|
+
"Bash(command -v flutter)",
|
|
385
|
+
"Bash(flutter --version)",
|
|
386
|
+
"Bash(command -v adb)",
|
|
387
|
+
"Bash(command -v node)",
|
|
388
|
+
"Bash(rm -rf /tmp/jss-mobile-test)",
|
|
389
|
+
"Bash(mkdir -p /tmp/jss-mobile-test)",
|
|
390
|
+
"Bash(JSS_SINGLE_USER_PASSWORD=test1234 node bin/jss.js start --single-user --port 4444 --root /tmp/jss-mobile-test --idp)",
|
|
391
|
+
"Bash(./scripts/bundle-jss.sh 0.0.169)",
|
|
392
|
+
"Bash(JSS_SINGLE_USER_PASSWORD=test1234 node assets/nodejs-project/bin/jss.js start --single-user --port 4446 --host 127.0.0.1 --root /tmp/jss-bundle-smoke --idp)",
|
|
393
|
+
"Bash(flutter create *)",
|
|
394
|
+
"Bash(flutter pub *)",
|
|
395
|
+
"WebFetch(domain:pub.dev)",
|
|
396
|
+
"WebFetch(domain:nodejs-mobile.github.io)",
|
|
397
|
+
"WebFetch(domain:bare.pears.com)",
|
|
398
|
+
"Bash(command -v gradle)",
|
|
399
|
+
"Bash(gradle --version)",
|
|
400
|
+
"Bash(java -version)",
|
|
401
|
+
"Bash(./gradlew --version)",
|
|
402
|
+
"Bash(./gradlew :app:tasks --no-daemon --warning-mode=none)",
|
|
403
|
+
"Bash(ANDROID_HOME=/home/melvin/Android/Sdk ANDROID_SDK_ROOT=/home/melvin/Android/Sdk ./gradlew :app:tasks --no-daemon)",
|
|
404
|
+
"Bash(ANDROID_HOME=/home/melvin/Android/Sdk ANDROID_SDK_ROOT=/home/melvin/Android/Sdk ./gradlew :app:processDebugResources --no-daemon)",
|
|
405
|
+
"Bash(ANDROID_HOME=/home/melvin/Android/Sdk ANDROID_SDK_ROOT=/home/melvin/Android/Sdk ./gradlew :app:compileDebugKotlin --no-daemon)",
|
|
406
|
+
"Bash(./scripts/fetch-libnode.sh v18.20.4)",
|
|
407
|
+
"Bash(ANDROID_HOME=/home/melvin/Android/Sdk ANDROID_SDK_ROOT=/home/melvin/Android/Sdk ./gradlew :app:assembleDebug --no-daemon)",
|
|
408
|
+
"Bash(/home/melvin/Android/Sdk/platform-tools/adb devices *)"
|
|
383
409
|
]
|
|
384
410
|
}
|
|
385
411
|
}
|
package/README.md
CHANGED
|
@@ -25,6 +25,7 @@ A minimal, fast, JSON-LD native Solid server.
|
|
|
25
25
|
- **Git HTTP Backend** — Clone and push to pod containers
|
|
26
26
|
- **Nostr Relay** — Integrated NIP-01 relay (`wss://your.pod/relay`)
|
|
27
27
|
- **Nostr Auth** — NIP-98 signatures, did:nostr → WebID resolution
|
|
28
|
+
- **End-to-End Encryption** — Encrypt pod content client-side via NIP-44 / NIP-04 using `did:nostr` keys ([docs](https://jss.live/docs/features/e2ee/), zero server-side changes)
|
|
28
29
|
- **ActivityPub** — Fediverse federation with Mastodon-compatible API
|
|
29
30
|
- **remoteStorage** — [draft-dejong-remotestorage-22](https://remotestorage.io/spec/) file sync
|
|
30
31
|
- **MongoDB Storage** — Optional `/db/` route for JSON-LD at scale
|
package/package.json
CHANGED
package/src/handlers/git.js
CHANGED
|
@@ -97,7 +97,7 @@ export async function handleGit(request, reply) {
|
|
|
97
97
|
if (request.method === 'OPTIONS') {
|
|
98
98
|
reply.header('Access-Control-Allow-Origin', '*');
|
|
99
99
|
reply.header('Access-Control-Allow-Methods', 'GET, POST, OPTIONS');
|
|
100
|
-
reply.header('Access-Control-Allow-Headers', 'Content-Type, Authorization');
|
|
100
|
+
reply.header('Access-Control-Allow-Headers', 'Content-Type, Authorization, Git-Protocol');
|
|
101
101
|
return reply.code(200).send();
|
|
102
102
|
}
|
|
103
103
|
|
|
@@ -217,7 +217,7 @@ export async function handleGit(request, reply) {
|
|
|
217
217
|
// Add CORS headers for browser git clients
|
|
218
218
|
reply.raw.setHeader('Access-Control-Allow-Origin', '*');
|
|
219
219
|
reply.raw.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS');
|
|
220
|
-
reply.raw.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization');
|
|
220
|
+
reply.raw.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization, Git-Protocol');
|
|
221
221
|
|
|
222
222
|
reply.raw.writeHead(statusCode);
|
|
223
223
|
headersSent = true;
|