Book Image

D Web Development

By : Kai Nacke
Book Image

D Web Development

By: Kai Nacke

Overview of this book

D is a programming language with C-like syntax and static typing. The vibe.d framework builds on powerful D concepts like template meta-programming and compile-time function execution to provide an easy-to-use environment for web applications. The combination of a feature-rich web programming framework with a language compiling to native code solves two common issues in web development today: it accelerates your development and it results in fast, native web applications. Learning the vibe.d framework before you start your application will help you to choose the right features to reach your goal. This book guides you through all aspects of web development with D and the vibe.d framework. Covering the popular operating systems today, this guide starts with the setup of your development system. From the first Hello World-style application you will move on to building static web pages with templates. The concise treatment of web forms will give you all the details about form handling and web security. Using the abstractions of the web framework you will learn how to easily validate user input. Next, you will add database access to your application, providing persistent storage for your data. Building on this foundation, you will expose your component and integrate other components via REST. Learning about the internals of vibe.d you will be able to use low-level techniques such as raw TCP access. The vibe.d concepts can also be used for GUI clients, which is the next topic that you will learn. vibe.d is supported by an active community, which adds new functionality. This comprehensive guide concludes with an overview of the most useful vibe.d extensions and where to find them. It also shows you how to integrate these extensions in your application. The concepts are always illustrated with source code, giving you an insight into how to apply them in your application.
Table of Contents (17 chapters)
D Web Development
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Creating a template with a simple form


Let's start with a web page to create a note. A simple design is as follows:

In HTML, there are two ways to submit a form: POST and GET. The difference is the way how the parameters are transferred to the server. In both cases, the browser issues an HTTP request. If you use the POST method, then the browser sends an HTTP request with the POST request method token to the server. The values of the form fields are transmitted in the request body. With the GET method, the browser sends a HTTP request with the GET request method token to the server. The values of the form fields are appended to the URL after a question mark (?) character.

Note

A Uniform Resource Locator (URL) describes the location of a resource that is available over the Internet. A typical URL looks similar to http://www.example.com/path/to/file?user=yourid&action=create. The parts of a URL are as follows:

  • http://: This denotes the protocol

  • www.example.com: This is the host name

  • /path...