You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am so impressed by this generator and the structure itself. Good job!
BUT need more explanation on WHY to use some modules that way ?
For Example: I am using Interceptor in my Ionic and Angular apps, but here it's kinda different than what I used to implement
Another Example: What the heck is the Shell module ? 🤣 I tried but didn't got what it should be used for !?
Expected behavior
More docs for CORE, Shared and Routing modules
Finally I need to take advantage of Angular Best practice and Style guide as well. With some simple modification from my side. that what any Developer would need
The text was updated successfully, but these errors were encountered:
You are right, there should definitely be more docs! 😺
Unfortunately, this project is maintained by volunteers so documentation is a best effort... Though you can always help and contribute 😉
I'll try to put up a FAQ someday and add more to the Angular guide already provided.
HTTP Interceptors are by default applied to all requests, which is quite rigid and often you need specific behavior for some requests, such as caching for example. The extended HttpClient provided allows to enable/disable interceptor for a specific request, something you cannot do with the bare HttpClient.
I got the idea of shared and core modules, and that what exactly I was doing in all my Angular projects with little differences.
For the Shell module, I think it's kinda crucial. I had implemented the same idea but with React-Way. i tried ton implement the concept of containers with two main containers "Full" and "simple". The simple container is for pages like Login, Signup, 404, and so on. The Full container contains Navbar, Sidemenu, Asidemenu (if found), and main content of app <router-outlet></router-outlet>
This way I think it's easy to customise, or even add more containers later. Need your opinion in that
For Interceptor part, I got exactly what you did and for caching we will need more docs.
I'm submitting a...
Current behavior
I am so impressed by this generator and the structure itself. Good job!
BUT need more explanation on WHY to use some modules that way ?
For Example: I am using Interceptor in my Ionic and Angular apps, but here it's kinda different than what I used to implement
Another Example: What the heck is the Shell module ? 🤣 I tried but didn't got what it should be used for !?
Expected behavior
More docs for CORE, Shared and Routing modules
Finally I need to take advantage of Angular Best practice and Style guide as well. With some simple modification from my side. that what any Developer would need
The text was updated successfully, but these errors were encountered: