Skip to content

Latest commit

 

History

History
61 lines (42 loc) · 1.9 KB

angular-starter-kit.md

File metadata and controls

61 lines (42 loc) · 1.9 KB

angular-starter-kit

Starter kit for developing web apps with Code.Hub and Angular

Angular Starter Kit

Recommended Setup ⚒️

  • Visual Studio Code (VSCode)
  • Node.js
  • npm
  • Git

Installation instructions 📑

  1. Download and install VSCode editor.

  2. 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.js

    Angular applications require an LTS version of Node.js in order to work properly.

  3. 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.

  4. 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.

Getting started 🚀

To verify that you have setup your local environment correctly, follow the steps below.

  1. Clone this repository locally by running the command:

    git clone https://github.com/codehub-learn/angular-starter-kit.git
  2. Navigate to the newly created angular-starter-kit folder and install the project dependencies:

    cd angular-starter-kit
    npm install
  3. Run the Angular Starter Kit application using the command:

    ng serve -o

    You should see the following:

Angular Starter Kit is running

Congratulations 👏

You are now ready to learn how to develop Angular applications with Code.Hub 🔥