Here are some Angular best practices that can help you write clean, maintainable, and efficient Angular applications: Naming Conventions: Following consistent and meaningful naming conventions in your Angular projects is [ … ]
Category: Angular
Exporting Constants or Functions After Resolving Promise in Angular
In Angular, you can’t directly export a constant after receiving a promise, as exports need to be determined at compile-time and constants set by promises are resolved at runtime. However, [ … ]
Deploying Angular App in Production
Once you are done with development of your angular project in your local machine, now it’s time to build and deploy the same in production server. We can deploy angular [ … ]
Create Angular Project Using angular-cli
Creating angular seed or getting started project using angular-cli is pretty simple. In this article I will show you how it can be done in Windows. Follow the following steps [ … ]