@biglogic/rgs 3.9.10 → 3.9.11
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/README.md +61 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -435,13 +435,69 @@ graph TB
|
|
|
435
435
|
|
|
436
436
|
---
|
|
437
437
|
|
|
438
|
+
## ✨ VScode extension
|
|
439
|
+
|
|
440
|
+
- [rgs.vsix](extension/rgs.vsix)
|
|
441
|
+
|
|
442
|
+
RGS (Reactive Global State) is a powerful Visual Studio Code extension that provides comprehensive IntelliSense, diagnostics, and a State Explorer sidebar for the RGS state management library.
|
|
443
|
+
|
|
444
|
+
### Key Features:
|
|
445
|
+
- Intelligent IntelliSense - Full API autocomplete for createStore, initState, useStore, useSyncedState, and more
|
|
446
|
+
- Hover Documentation - Inline documentation on hover for all RGS functions and types
|
|
447
|
+
- Code Snippets - Pre-built templates for common patterns
|
|
448
|
+
- Go to Definition - Navigate directly to store definitions
|
|
449
|
+
|
|
450
|
+
### Real-Time Diagnostics
|
|
451
|
+
|
|
452
|
+
Automatically detects issues in RGS code:
|
|
453
|
+
|
|
454
|
+
- ⚠️ Warnings: Undefined values, missing namespaces
|
|
455
|
+
- 💡 Hints: Type safety suggestions
|
|
456
|
+
- 🔒 Security: Detection of dangerous key assignments
|
|
457
|
+
|
|
458
|
+
### State Explorer Sidebar
|
|
459
|
+
Four powerful views:
|
|
460
|
+
|
|
461
|
+
1. Welcome - Quick access to extension features
|
|
462
|
+
2. State Explorer - Visual tree of all stores in your project
|
|
463
|
+
3. State Properties - Detailed view with types, defaults, and attributes (persisted, encrypted, readonly)
|
|
464
|
+
4. Information - Documentation and help resources
|
|
465
|
+
|
|
466
|
+
### Supported Languages
|
|
467
|
+
|
|
468
|
+
TypeScript (.ts, .tsx)
|
|
469
|
+
JavaScript (.js, .jsx)
|
|
470
|
+
|
|
471
|
+
---
|
|
472
|
+
|
|
438
473
|
## 📚 Documentation
|
|
439
474
|
|
|
440
|
-
- [
|
|
441
|
-
- [
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
475
|
+
- [SKILL](SKILL.md)
|
|
476
|
+
- [SUMMARY](SUMMARY.md)
|
|
477
|
+
|
|
478
|
+
### Core Concepts
|
|
479
|
+
|
|
480
|
+
- [Getting Started](markdown/getting-started.md)
|
|
481
|
+
- [Philosophy](markdown/philosophy.md)
|
|
482
|
+
- [The Magnetar Way](markdown/the-magnetar-way.md)
|
|
483
|
+
|
|
484
|
+
### Features & Architecture
|
|
485
|
+
|
|
486
|
+
- [Security Architecture](markdown/security-architecture.md)
|
|
487
|
+
- [Persistence and Safety](markdown/persistence-and-safety.md)
|
|
488
|
+
- [Local-First Sync](markdown/local-first-sync.md)
|
|
489
|
+
- [Plugins and Extensibility](markdown/plugins-and-extensibility.md)
|
|
490
|
+
|
|
491
|
+
### Development
|
|
492
|
+
|
|
493
|
+
- [Plugin SDK](markdown/plugin-sdk.md)
|
|
494
|
+
- [API Reference](markdown/api.md)
|
|
495
|
+
- [Migration Guide](markdown/migration-guide.md)
|
|
496
|
+
|
|
497
|
+
### Support
|
|
498
|
+
|
|
499
|
+
- [FAQ](markdown/faq.md)
|
|
500
|
+
- [Case Studies](markdown/case-studies.md)
|
|
445
501
|
|
|
446
502
|
---
|
|
447
503
|
|
package/package.json
CHANGED