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

Serializing D to JSON and back


With the RESTful approach, the client and server exchange messages using the HTTP protocol. Of the many possible data formats, JavaScript Object Notation (JSON) is used. Originally, JSON was based on a subset of JavaScript. It has basic data types for numbers, strings, and Booleans. Like JavaScript, it uses two different structures to create complex data:

  • A collection of key/value pairs called an object in JSON. This is like an associative array in D and can be used to represent objects, maps, and so on. The key/value pairs are surrounded by { and }.

  • An ordered list of values called an array in JSON. The values are surrounded by [ and ].

The format is written in JavaScript. Once properly formatted, this is easily readable. A list of notes could look as follows:

[
  { "id":1, "topic":"Topic 1", "content":"Content 1" },

  { "id":2, "topic":"Topic 2", "content":"Content 2" }
]

A single note is the key/value collection in { }. The list consists of the enumerated notes...