万本电子书0元读

万本电子书0元读

顶部广告

D Web Development电子书

售       价:¥

1人正在读 | 0人评论 9.8

作       者:Kai Nacke

出  版  社:Packt Publishing

出版时间:2016-01-30

字       数:81.7万

所属分类: 进口书 > 外文原版书 > 电脑/网络

温馨提示:数字商品不支持退换货,不提供源文件,不支持导出打印

为你推荐

  • 读书简介
  • 目录
  • 累计评论(0条)
  • 读书简介
  • 目录
  • 累计评论(0条)
Leverage the power of D and the vibe.d framework to develop web applications that are incredibly fastAbout This BookUtilize the elegant vibe.d framework to build web applications easily and REST backends with the D programming languageLearn about all components of vibe.d to enhance your web development with DA hands-on guide to the vibe.d framework; from static web pages to template-based, interactive and localized web applications with database access and REST backendsWho This Book Is ForWhether you are new to the world of D, or already have developed applications in D, or if you want to leverage the power of D for web development, then this book is ideal for you. Basic knowledge of core web technologies like HTML 5 is helpful but not required. This book explains the difficult details to speed your web development.What You Will LearnCreate amazingly fast web applications with DUse Diet templates to easily create a web user interfaceUtilize the web framework for interactive applications with input validation and internationalizationAccess a database to provide persistent storage for your applicationExtend your application with a REST interface and access other applications via RESTUnderstand vibe.d’s fiber-based approach to asynchronous I/O and use it for integration of existing componentsCreate GUI applications with vibe.dIn DetailD 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.Style and approachA tutorial-style guide to develop web applications with D and the vibe.d framework. Each topic is explained in detail and illustrated with source code, providing you with hands-on assistance for your application.
目录展开

D Web Development

Table of Contents

D Web Development

Credits

Foreword

About the Author

About the Reviewers

www.PacktPub.com

Support files, eBooks, discount offers, and more

Why subscribe?

Free access for Packt account holders

Preface

What this book covers

What you need for this book

Who this book is for

Conventions

Reader feedback

Customer support

Downloading the example code

Downloading the color images of this book

Errata

Piracy

Questions

1. Getting Started with Your First Web Application

Installing the D compiler and the DUB package manager

Ubuntu and Debian

Fedora

OS X

Windows

Building from source

Verifying your environment

Creating your first web application

Using DUB to set up the project structure

Creating your first template

Summary

2. Using Templates for Your Web Pages

Benefits of using templates

Creating your first template

Turning the HTML page into a Diet template

Adding inheritance

Using includes

Integrating other languages with blocks and filters

Solving common tasks

Configuring the document type

Comments in a template

More about tags

Localizing your website

Adding D code to your template

Summary

3. Get Interactive – Forms and Flow Control

Introducing the note application

Creating a template with a simple form

A closer look at route matching

Serving static files

Storing session data

Authenticating the user

Using basic authentication

Using digest authentication

Form-based authentication

Enabling TLS/SSL with your application

Displaying an error page

Uploading files

Summary

4. Easy Forms with the Web Framework

Taking advantage of unique D features

Converting the note application

Naming the handler functions

Passing values of form fields

Creating sessions and session variables

Putting everything together

Validating user input

Displaying error messages with @errorDisplay

Refining the validation

Adding authentication

Localizing the web content

Summary

5. Accessing a Database

Choosing the right database technology

Relational databases

A key-value store

Document databases

Making a choice

Using the Redis key-value store

Installing Redis

Accessing Redis from the note application

Using the MongoDB document database

Installing MongoDB

Persisting data with MongoDB

Using the MySQL relational database

Installing MySQL

Using MySQL with vibe.d

Summary

6. Using the REST Interface

Defining the principles of the World Wide Web

Serializing D to JSON and back

Creating and using a REST service

Providing a service

Using a service

Tailoring the generated REST API

Changing the generated path

Passing parameters

Accessing CouchDB

Installing CouchDB

Testing the REST interface

Implementing the NoteStore service

Summary

7. The vibe.d Internals

The programming model of vibe.d

What is a fiber?

Benefits of asynchronous I/O

Combining threads, fibers, and asynchronous I/O

Coding your own main function

Performing background work

Running a fiber-based task

Using a thread

Porting an existing driver

An alternative solution for the existing drivers

Summary

8. Using vibe.d with a GUI Client

The GUI event loop and vibe.d

Creating a Win32 GUI application

Creating an X11 GUI application

Integrating with other GUI toolkits

Summary

9. Power Your Application with vibe.d Extensions

Publishing your project in the DUB registry

Useful community projects

Adding WebDAV services

Running your own blog

Chatting with IRC

Coding for the Internet of Things

Serving news

Accessing the Apache Cassandra database

Summary

Index

累计评论(0条) 1个书友正在讨论这本书 发表评论

发表评论

发表评论,分享你的想法吧!

买过这本书的人还买过

读了这本书的人还在读

回顶部