isite 2026.4.4 → 2026.6.1

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/llms.txt ADDED
@@ -0,0 +1,40 @@
1
+ # isite
2
+
3
+ isite is a CommonJS Node.js web framework for building multi-language websites with automatic routing, server-side site file parsing, sessions, cookies, permissions, MongoDB helpers, uploads/downloads, WebSocket support, custom apps, and utility functions.
4
+
5
+ ## Main documentation
6
+
7
+ - Documentation site: ./docs/index.html
8
+ - AI context: ./docs/ai-context.md
9
+ - API map: ./docs/api-map.json
10
+ - AI examples: ./docs/examples-for-ai.md
11
+ - Agent guide: ./AGENTS.md
12
+ - Package entry point: ./index.js
13
+ - README: ./README.md
14
+
15
+ ## Main source areas
16
+
17
+ - Routing and request/response helpers: ./lib/routing.js
18
+ - File helpers: ./lib/fsm.js
19
+ - MongoDB wrapper: ./lib/mongodb.js
20
+ - Collection wrapper: ./lib/collection.js
21
+ - Security: ./lib/security.js
22
+ - Sessions: ./lib/sessions.js
23
+ - WebSocket: ./lib/ws.js and ./lib/wsClient.js
24
+ - Server-side parser: ./lib/parser.js
25
+ - Custom apps: ./lib/app.js
26
+ - General utilities: ./object-options/lib/fn.js
27
+ - Events: ./object-options/lib/event.js
28
+
29
+ ## Canonical startup example
30
+
31
+ ```js
32
+ var isite = require('isite');
33
+ var site = isite({ port: 8080 });
34
+
35
+ site.loadLocalApp('client-side');
36
+ site.loadLocalApp('security');
37
+
38
+ site.run();
39
+ ```
40
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isite",
3
- "version": "2026.04.04",
3
+ "version": "2026.06.01",
4
4
  "description": "Create High Level Multi-Language Web Site [Fast and Easy] ",
5
5
  "main": "index.js",
6
6
  "repository": {