Welcome to this series, hope you have installed angular & node -> Prerequisites & Installation
What are we building?
Before we start, I like to show how the end product will look like.
Fetched data based on geo location:
Fetched data based on City name specified:
Create a workspace and weatherApp application
Open gitbash/terminal and lets create a workspace.
- Run the CLI command ng new and provide the name my-app, as shown here:
ng new my-app
Here ng new command is to create app, my-app is the name of the app you can give.
I have created
weatherApp
ng new weatherApp
The ng new command prompts you for information about features to include in the initial app. Accept the defaults by pressing the Enter or Return key.
The Angular CLI installs the necessary Angular npm packages and other dependencies. This can take a few minutes.
The CLI creates a new workspace and a simple Welcome app, ready to run.
Run the application
The Angular CLI includes a server, for you to build and serve your app locally. Navigate to the workspace folder, such as weatherApp. Run the following command:
cd weatherApp
ng serve --open
The ng serve command launches the server, watches your files, and rebuilds the app as you make changes to those files.
The --open (or just -o) option automatically opens your browser to http://localhost:4200/
If your installation and setup was successful, you should see a page similar to the following.
That's it๐ You did good