Site icon Embarcadero RAD Studio, Delphi, & C++Builder Blogs

Add The Powerful Angular Web Framework To Your Delphi Apps

add the powerful angular web framework to your Delphi apps

Angular is a trendy and robust web application design framework. It’s a development platform for creating highly efficient and sophisticated single-page apps. Angular is built on TypeScript which is a strongly-typed super-set of JavaScript. The TypeScript framework shares parentage with an IDE software since the project is headed by Microsoft’s Anders Hejlsberg who we all know better as the original creator of Delphi. Anders is still very active in the TypeScript project. The typeScript was designed to overcome some of the shortcomings of JavaScript and in particular to try and use the lessons learned with Delphi’s superb type system to help prevent very common and subtle errors which crop up frequently in JavaScript when developers accidentally misuse an object.

What sort of features does Angular include?

With Angular, you’re taking advantage of a platform that can scale from single-developer projects to enterprise-level applications. Angular is designed to make updating as easy as possible, so you can take advantage of the latest developments with a minimum of effort. Best of all, the Angular ecosystem consists of a diverse group of over 1.7 million developers, library authors, and content creators.

What can we do with Angular and Delphi?

Of course many things we can do using Delphi, one of them is by serving Angular application using it, so let’s create simple web application using Angular. Here are the steps:

Install Angular CLI [crayon-662d6a15ee8e2073622081/]

Create new Application using it [crayon-662d6a15ee8e9421764567/]

You can read full tutorial on their website here https://angular.io/guide/setup-local

if everything is smooth, now you can run the application using below command [crayon-662d6a15ee8eb412929024/]

But wait, we will not run Angular Application using their own embedded HTTP server. so run below command to build the application [crayon-662d6a15ee8ec733855071/] Now there should be a Dist folder.

If you read this post please download from the repo we provided, because our article will using Horse as a back-end.

We need Horse Middleware to serve static files. Download here https://github.com/CachopaWeb/horse-server-static

Now horse1.dpr code looks like the following:

[crayon-662d6a15ee8ed608292274/]

You can serve up the Angular web pages with this code..

[crayon-662d6a15ee8ee522965673/]

You will need to copy the folder dist/web to Win32/Debug, first though to run it in the debugger since our Horse application build to win32

Running Angular with Delphi

Run application and point your browser to http://localhost:8080/index.html , you should see something like the image below:


Easy isn’t it ? Please check updated code here https://github.com/checkdigits/horse-API-Demo

Exit mobile version