@venizia/ignis-docs 0.0.4-0 → 0.0.4-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/package.json +1 -1
- package/wiki/references/base/bootstrapping.md +4 -3
- package/wiki/references/base/controllers.md +5 -6
- package/wiki/references/base/middlewares.md +4 -2
- package/wiki/references/base/providers.md +1 -2
- package/wiki/references/base/repositories/index.md +1 -1
- package/wiki/references/base/services.md +2 -2
- package/wiki/references/helpers/socket-io.md +1 -1
- package/wiki/references/quick-reference.md +2 -2
- package/wiki/references/utilities/statuses.md +4 -4
package/package.json
CHANGED
|
@@ -786,8 +786,9 @@ await app.boot();
|
|
|
786
786
|
- **Guides:**
|
|
787
787
|
- [Bootstrapping Concepts](/guides/core-concepts/application/bootstrapping)
|
|
788
788
|
- [Application Guide](/guides/core-concepts/application/)
|
|
789
|
-
- [Auto-Discovery](/guides/core-concepts/auto-discovery.md)
|
|
790
789
|
|
|
791
790
|
- **Best Practices:**
|
|
792
|
-
- [
|
|
793
|
-
|
|
791
|
+
- [Architectural Patterns](/best-practices/architectural-patterns)
|
|
792
|
+
|
|
793
|
+
- **Configuration:**
|
|
794
|
+
- [Environment Variables](/references/configuration/environment-variables)
|
|
@@ -471,14 +471,13 @@ By leveraging these structured configuration options and the `ControllerFactory`
|
|
|
471
471
|
- [Dependency Injection](./dependency-injection.md) - DI patterns and injection
|
|
472
472
|
|
|
473
473
|
- **Guides:**
|
|
474
|
-
- [
|
|
475
|
-
- [
|
|
476
|
-
- [Routing and Decorators](/guides/core-concepts/routing.md)
|
|
474
|
+
- [Controllers Guide](/guides/core-concepts/controllers)
|
|
475
|
+
- [Building a CRUD API](/guides/tutorials/building-a-crud-api)
|
|
477
476
|
|
|
478
477
|
- **Best Practices:**
|
|
479
|
-
- [API
|
|
480
|
-
- [
|
|
481
|
-
- [
|
|
478
|
+
- [API Usage Examples](/best-practices/api-usage-examples)
|
|
479
|
+
- [Troubleshooting Tips](/best-practices/troubleshooting-tips)
|
|
480
|
+
- [Security Guidelines](/best-practices/security-guidelines)
|
|
482
481
|
|
|
483
482
|
- **External Resources:**
|
|
484
483
|
- [OpenAPI Specification](https://swagger.io/specification/)
|
|
@@ -594,8 +594,10 @@ Error handlers log every error. For high error rates, consider:
|
|
|
594
594
|
- [Dependency Injection](./dependency-injection.md) - DI container and providers
|
|
595
595
|
|
|
596
596
|
- **Guides:**
|
|
597
|
-
- [Building
|
|
598
|
-
|
|
597
|
+
- [Building a CRUD API](/guides/tutorials/building-a-crud-api)
|
|
598
|
+
|
|
599
|
+
- **Best Practices:**
|
|
600
|
+
- [Troubleshooting Tips](/best-practices/troubleshooting-tips)
|
|
599
601
|
|
|
600
602
|
- **External Resources:**
|
|
601
603
|
- [Hono Middleware Documentation](https://hono.dev/docs/guides/middleware)
|
|
@@ -724,8 +724,7 @@ export class ConfigProvider extends BaseProvider<Config> {
|
|
|
724
724
|
- [Building Services](/guides/core-concepts/services.md)
|
|
725
725
|
|
|
726
726
|
- **Best Practices:**
|
|
727
|
-
- [
|
|
728
|
-
- [Service Layer Patterns](/best-practices/architecture/service-patterns.md)
|
|
727
|
+
- [Architectural Patterns](/best-practices/architectural-patterns)
|
|
729
728
|
|
|
730
729
|
- **External Resources:**
|
|
731
730
|
- [Factory Pattern](https://refactoring.guru/design-patterns/factory-method)
|
|
@@ -207,7 +207,7 @@ await repo.deleteAll({ where: {}, options: { force: true } });
|
|
|
207
207
|
- [Repositories Guide](/guides/core-concepts/persistent/repositories) - Creating repositories tutorial
|
|
208
208
|
- [Models](/guides/core-concepts/persistent/models) - Entity definitions used by repositories
|
|
209
209
|
- [DataSources](/guides/core-concepts/persistent/datasources) - Database connections
|
|
210
|
-
- [Services](/guides/core-concepts/
|
|
210
|
+
- [Services](/guides/core-concepts/services) - Use repositories for data access
|
|
211
211
|
- [Transactions](/guides/core-concepts/persistent/transactions) - Multi-operation consistency
|
|
212
212
|
|
|
213
213
|
- **Repository Topics:**
|
|
@@ -117,5 +117,5 @@ By adhering to this pattern, you keep your code organized, testable, and maintai
|
|
|
117
117
|
- [Dependency Injection Guide](/guides/core-concepts/dependency-injection.md)
|
|
118
118
|
|
|
119
119
|
- **Best Practices:**
|
|
120
|
-
- [
|
|
121
|
-
- [Testing
|
|
120
|
+
- [Architectural Patterns](/best-practices/architectural-patterns)
|
|
121
|
+
- [Testing Guide](/guides/tutorials/testing)
|
|
@@ -119,4 +119,4 @@ socketClient.subscribe({
|
|
|
119
119
|
- [Socket.IO Redis Adapter](https://socket.io/docs/v4/redis-adapter/) - Scaling guide
|
|
120
120
|
|
|
121
121
|
- **Tutorials:**
|
|
122
|
-
- [Real-Time Chat Application](/guides/tutorials/
|
|
122
|
+
- [Real-Time Chat Application](/guides/tutorials/realtime-chat) - Socket.IO tutorial
|
|
@@ -630,5 +630,5 @@ class UserRepository extends DefaultCRUDRepository<User> {
|
|
|
630
630
|
- [Core Concepts](/guides/core-concepts/application/) - Architecture deep-dive
|
|
631
631
|
|
|
632
632
|
- **Best Practices:**
|
|
633
|
-
- [
|
|
634
|
-
- [Security Guidelines](/best-practices/security
|
|
633
|
+
- [Architectural Patterns](/best-practices/architectural-patterns)
|
|
634
|
+
- [Security Guidelines](/best-practices/security-guidelines)
|
|
@@ -732,9 +732,9 @@ if (isTerminal) {
|
|
|
732
732
|
- [Services](../base/services.md) - Business logic with status transitions
|
|
733
733
|
|
|
734
734
|
- **Guides:**
|
|
735
|
-
- [Data Modeling](/guides/core-concepts/models
|
|
736
|
-
- [Working with Repositories](/guides/core-concepts/repositories
|
|
735
|
+
- [Data Modeling](/guides/core-concepts/persistent/models)
|
|
736
|
+
- [Working with Repositories](/guides/core-concepts/persistent/repositories)
|
|
737
737
|
|
|
738
738
|
- **Best Practices:**
|
|
739
|
-
- [
|
|
740
|
-
- [
|
|
739
|
+
- [Architectural Patterns](/best-practices/architectural-patterns)
|
|
740
|
+
- [Data Modeling Best Practices](/best-practices/data-modeling)
|