ng generate – Starting Projects the Right Way

ng build The ng build command is intended to prepare your application bundle to be executed by the production web server of your choice. It performs a series of optimizations

Read More

ng add – Starting Projects the Right Way

This command has the function of adding an Angular library to your project. You might be wondering, Doesn’t npm install do the same thing? and you’d be right. However, when

Read More

Project structure – Starting Projects the Right Way

The Angular CLI creates the project in the structure recommended by the Angular team with all files configured by default. To deepen our knowledge of the framework, we need to

Read More

Starting an Angular project – Starting Projects the Right Way

We have our tools installed and configured and now we are going to start our Angular application. First, we are going to install the Angular CLI, which will be responsible

Read More

Standardizing the extensions and settings in the project – Starting Projects the Right Way

In the Why choose Angular? section, we learned that one of the advantages of choosing this framework for your project is the standardization it provides to development and the team.

Read More

VS Code settings – Starting Projects the Right Way

EditorConfig The EditorConfig (https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig) plugin has the function of creating a default configuration file for not only VS Code but also any IDE that supports this format. This plugin is

Read More

Angular Language Service – Starting Projects the Right Way

Configuring your development environment A well-organized environment with the right tools is the first step toward excellence and productivity; now, let’s set this environment up in your workspace. After installing

Read More

Karma and Jasmine – Starting Projects the Right Way

TypeScript TypeScript is a superset of the JavaScript language that adds type checking and other features to the language, ensuring a better developer experience and security for web development. It

Read More

Google support – Starting Projects the Right Way

Angular was created and maintained by the Angular team at Google. Although excellent frameworks such as Vue.js and Svelte are maintained only by their communities, having such a big tech

Read More

Batteries included – Starting Projects the Right Way

Angular is a framework that has the motto “batteries included” as a development philosophy. This means that practically all the resources you need for your frontend application needs are already

Read More