Starter kit for developing web apps with Code.Hub and Angular
- Visual Studio Code (VSCode)
- Node.js
- npm
- Git
-
Download and install VSCode editor.
-
Download and install an LTS version of Node.js. To verify that you have installed it correctly type the command
node -v
in a command line window and it should display the installed version of Node.jsAngular applications require an LTS version of Node.js in order to work properly.
-
Npm is already included in Node.js. To verify that you have it, type the command
npm -v
in a command line window and it should display the installed npm version.Windows users: if the previous command is not working, verify that the path of the npm executable has been added to your PATH environment variable.
-
If you do not already have Git installed, navigate to https://git-scm.com/downloads, download the appropriate version for your environment and install it.
To verify that you have setup your local environment correctly, follow the steps below.
-
Clone this repository locally by running the command:
git clone https://github.com/codehub-learn/angular-starter-kit.git
-
Navigate to the newly created
angular-starter-kit
folder and install the project dependencies:cd angular-starter-kit npm install
-
Run the Angular Starter Kit application using the command:
ng serve -o
You should see the following:
You are now ready to learn how to develop Angular applications with Code.Hub 🔥