Angular + Eclipse "Hello World" Example

By Arvind Rai, October 06, 2017
This page will walk through creating Angular project using Angular IDE/Eclipse for "Hello World" example. Here we will install Angular IDE by Webclipse. We can install Angular IDE by downloading it or by using NPM command. We can also install Angular IDE plugin in Eclipse. On this page we will provide step by step detail for how to work with Angular IDE, to create Angular project and to run it. We can create new project as well as we can import our existing project in Angular IDE to work on it. We will also provide how to change default theme, to change default server port and to change default syntax coloring. By changing port project wise we can run more than one Angular project all together on different ports. If we have installed neither Node.js nor NPM and nor Angular CLI then Angular IDE will install all these for us while creating project. If we have already installed them, we can select their system installed version while creating project and importing project using Angular IDE. Now let's start working on Angular IDE step by step.

Step-1: Install Angular IDE

We can install Angular IDE in following ways.

1. Using Angular IDE download link

Visit the below link to download and install Angular IDE.

Download Angular IDE by Webclipse

When we launch the IDE, it will ask for Workspace. We can select a directory for Workspace where we want to keep our Angular projects.
Angular + Eclipse 'Hello World' Example
2. Using NPM

If NPM is already installed, we can run following commands to install Angular IDE.
a. Run below command.
npm install -g angular-ide 
Angular + Eclipse 'Hello World' Example
b. Now run following command.
ngide install E:\IDE 
E:\IDE is the directory where Angular IDE will be downloaded. You need to specify your directory.
Angular + Eclipse 'Hello World' Example
We will get downloaded Angular IDE in E:\IDE\angular-ide. To launch the Angular IDE click on angularide.exe file Located in E:\IDE\angular-ide.

3. Install Angular IDE plugin in Eclipse

If we are already using Eclipse, we can install Angular IDE plugin in it. To install it, go to Eclipse Marketplace and search for Angular IDE using "Find" section. Select the Angular IDE as given in the print screen. Now click on "Install" to install this plugin.
Angular + Eclipse 'Hello World' Example
We can also install the Angular IDE plugin in Eclipse using the following link.

Eclipse Marketplace: Angular IDE

In this way we will get Angular IDE in Eclipse.

Step-2: Change Angular IDE Theme

If we don't like the default theme of Angular IDE, we can change it. To change theme, go to Window -> Preferences -> Appearance and change it as required. I have changed it to Windows theme.
Angular + Eclipse 'Hello World' Example

Step-3: Change Angular HTML Syntax Coloring

To change Angular HTML syntax coloring, go to Window -> Preferences -> Web -> Angular HTML Editor -> Syntax Coloring . Here we will get syntax elements as following.
Angular Directive Name
Angular Expression
Angular Expression Border
We can change foreground, background color etc of the above syntax elements. I have set Angular HTML syntax coloring as following.
Angular + Eclipse 'Hello World' Example

Step-4: Create Angular Project

Now we will create Angular project from scratch. Go to File> New > Angular Project.

Here we have to fill project name and to select Angular CLI version, Node.js version and NPM version. If we have already installed Angular CLI, Node.js and NPM, then select their version accordingly. For Node.js and NPM we can select "Use system installation" and it will select the installed version of them in the system.
Angular + Eclipse 'Hello World' Example
Now click on "Finish" button. A project will be created that we can see in "Project Explorer+" in left panel.
Angular + Eclipse 'Hello World' Example
Angular plugins will be downloaded in "node_modules" folder. We can see the progress bar in "Terminal+" in bottom panel.
Angular + Eclipse 'Hello World' Example


Step-5: Create Project Files: Component, Pipe, Service etc

Right click on "app" folder of the project. We can create files of the project as required such as Component, Pipe, Service, Class, Enum, Interface etc.
Angular + Eclipse 'Hello World' Example
For the demo I will create a component for "Hello World" example. Right click on app folder and then go to app-> New -> Component. Here to create a component we need to provide element name as following.
Angular + Eclipse 'Hello World' Example
Go to Advanced settings for other configurations to create component where we can check and uncheck configurations as required. Now click "Finish" button. A folder with given element name will be created and inside this folder a Component, CSS and HTML files will be created starting with element name as given below.
Angular + Eclipse 'Hello World' Example
We have edited the files according to our "Hello World" example. When we edit any file, we save it using Ctrl + s in our Angular IDE. Now find these files.
app-hello-world.component.ts
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-hello-world',
  templateUrl: './app-hello-world.component.html',
  styleUrls: ['./app-hello-world.component.css']
})
export class AppHelloWorldComponent implements OnInit {
  message = 'Hello Angular World!';
  constructor() { }

  ngOnInit() {
  }
}
app-hello-world.component.html
<h1> 
  {{message}}
</h1> 
app-hello-world.component.css
h1 {
  color: #369;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 250%;
}
app.component.ts
import { Component } from '@angular/core';
@Component({
  selector: 'app-root',
  template: `
         <app-hello-world></app-hello-world>
      `,
})
export class AppComponent {
} 
app.module.ts
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';

import { AppComponent } from './app.component';
import { AppHelloWorldComponent } from './app-hello-world/app-hello-world.component';

@NgModule({
  imports:      [
    BrowserModule
  ],
  declarations: [
    AppComponent,
    AppHelloWorldComponent
  ],
  bootstrap: [ AppComponent ]
})
export class AppModule { } 

Step-6: Enable/Disable Formatting Rules using tslint.json

To enable/disable indent rule, import-spacing rule, max-line-length rule etc, we can make changes in tslint.json file. tslint.json file can be found in every project parallel to src folder. To enable any formatting rule, use the true value and to disable it use false value. For the example, suppose we want to disable import-spacing and indent rule for spaces, we change value in tslint.json as following.
tslint.json
------

"import-spacing": false,
"indent": [
  false,
  "spaces"
]

------ 

Step-7: Run Angular Project

We can run our project in two ways.
1. Go to Servers view. By default we can find it on the bottom of left panel. If it is not available, we can find it by navigating to Window -> Show View -> Servers . Click on Angular CLI and we can see our project listed there. Now right click on the project to start and stop server.
Angular + Eclipse 'Hello World' Example
We will see server startup logs in Terminal+ .

2. We can run project using ng serve from the Terminal+ view. Terminal+ can be found on the bottom panel by default. If it is not available we can bring it by navigating to menu Window -> Show View -> Terminal+. Click on (+) to get a terminal to run the command. We can open more than one terminal by clicking on (+) sign.
Angular + Eclipse 'Hello World' Example
We will see the logs of starting application. To stop the server, we need to use Ctrl + c in Terminal+.

After complete server startup by any above method, hit the below URL to access the application.
http://localhost:4200/ 
Find the print screen of the output.
Angular + Eclipse 'Hello World' Example

Step-8: Import Existing Project in Angular IDE

If we wish to work on existing Angular project using Angular IDE we can import it. To import existing Angular project in Angular IDE, follow the below steps.
1. Go to File-> Import
2. Select Angular Project and then click on Next button. Here we need to select root directory of our existing project. Root directory is the parent directory of src folder. We will also select Node.js and NPM version. We can select "Use system installation". Find the print screen.
Angular + Eclipse 'Hello World' Example
Click on Finish button.

Step-9: Change Server Port

We can change the default port 4200 for any angular application listed in our Angular IDE. We can run more than one Angular Application simultaneously with different port. To change the port for any angular application, find the following steps.

1. Go to Servers view. By default we can find it on the bottom of left panel. If it is not available, we can find it by navigating to Window -> Show View -> Servers . In our example we have two Angular projects that we will run with different ports together.
Angular + Eclipse 'Hello World' Example
2. To change the server port for any Angular project, double-click on it. A popup will open for "Edit Configuration". Go to the port section. By default the value will be 4200. Here I am changing it to 4201.
Angular + Eclipse 'Hello World' Example
Click on OK to save it. Now our one project will run on 4201 port and another will run on 4200 port.
3. To start server for any project, right click on the project and click on Start Server. In this way we can start server for both project. We can access those applications using following URLs.
http://localhost:4201/
http://localhost:4200/

Note: We can also use Visual Studio Code source editor for Angular project development. It is free, open source and runs everywhere. Find the link for Visual Studio Code.

Visual Studio Code

Reference

Angular IDE in MyEclipse

Download Source Code

POSTED BY
ARVIND RAI
ARVIND RAI







©2024 concretepage.com | Privacy Policy | Contact Us