@coherent.js/runtime 1.0.0-beta.5 → 1.0.0-beta.6

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 +38 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -186,6 +186,44 @@ export default {
186
186
  - `@coherent.js/koa` - Koa adapter
187
187
  - `@coherent.js/nextjs` - Next.js integration
188
188
 
189
+ ### **Tooling**
190
+ - `@coherent.js/language-server` - LSP for IDE support
191
+ - `coherent-language-support` - VS Code extension
192
+
193
+ ## IDE Support
194
+
195
+ Coherent.js provides first-class IDE support for an excellent developer experience.
196
+
197
+ ### VS Code Extension
198
+
199
+ Install the **Coherent.js Language Support** extension from the VS Code Marketplace for:
200
+
201
+ - **IntelliSense** - Autocomplete for HTML attributes and event handlers
202
+ - **Validation** - Real-time warnings for invalid attributes and HTML nesting
203
+ - **Snippets** - Quick patterns like `cel`, `ccomp`, `cinput`, and more
204
+ - **Hover Info** - Type information and documentation on hover
205
+
206
+ ```bash
207
+ # Install from command line
208
+ code --install-extension coherentjs.coherent-language-support
209
+ ```
210
+
211
+ Or search "Coherent.js Language Support" in the VS Code Extensions panel.
212
+
213
+ ### Language Server (for other editors)
214
+
215
+ The `@coherent.js/language-server` package provides LSP support for any editor:
216
+
217
+ ```bash
218
+ # Install globally
219
+ npm install -g @coherent.js/language-server
220
+
221
+ # Run the server
222
+ coherent-language-server --stdio
223
+ ```
224
+
225
+ Configure your editor's LSP client to use `coherent-language-server` for JavaScript and TypeScript files.
226
+
189
227
  ## 🎯 **Production Validation**
190
228
 
191
229
  All performance claims validated with real measurements:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coherent.js/runtime",
3
- "version": "1.0.0-beta.5",
3
+ "version": "1.0.0-beta.6",
4
4
  "description": "Runtime for Coherent.js - works in browsers, edge workers, and any JavaScript environment",
5
5
  "type": "module",
6
6
  "main": "dist/coherent-universal.js",
@@ -33,9 +33,9 @@
33
33
  }
34
34
  },
35
35
  "dependencies": {
36
- "@coherent.js/core": "1.0.0-beta.5",
37
- "@coherent.js/web-components": "1.0.0-beta.5",
38
- "@coherent.js/client": "1.0.0-beta.5"
36
+ "@coherent.js/core": "1.0.0-beta.6",
37
+ "@coherent.js/client": "1.0.0-beta.6",
38
+ "@coherent.js/web-components": "1.0.0-beta.6"
39
39
  },
40
40
  "devDependencies": {
41
41
  "esbuild": "^0.27.0",