Initial Version of sitemap.xml spec

This commit is contained in:
2026-03-06 23:34:00 -06:00
parent fec5bfa5c7
commit e9495f65b5
41 changed files with 10665 additions and 35 deletions

11
test-crypto-global.mjs Normal file
View File

@@ -0,0 +1,11 @@
// Test that crypto is available globally (Node.js Web Crypto API)
// Note: crypto is natively available in Node.js, no need to import server.js
// Should have crypto available
if (globalThis.crypto && globalThis.crypto.randomUUID) {
const uuid = globalThis.crypto.randomUUID();
process.stdout.write(`✅ crypto is available globally: ${uuid}\n`);
} else {
process.stdout.write('❌ crypto is NOT available globally\n');
process.exit(1);
}