• Complain

Fain Yakov - Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile

Here you can read online Fain Yakov - Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2014, publisher: OReilly Media, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Fain Yakov Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile

Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

If you want to build your organizations next web application with HTML5, this practical book will help you sort through the various frameworks, libraries, and development options that populate this stack. Youll learn several of these approaches hands-on by writing multiple versions of a sample web app throughout the book, so you can determine the right strategy for your enterprise.

Whats the best way to reach both mobile and desktop users? How about modularization, security, and test-driven development? With lots of working code samples, this book will help web application developers and software architects navigate the growing number of HTML5 and JavaScript choices available. The books sample apps are available at http://savesickchild.org.

  • Mock up the books working app with HTML, JavaScript, and CSS
  • Rebuild the sample app, first with jQuery and then Ext JS
  • Work with different build tools, code generators, and package managers
  • Build a modularized version of the app with RequireJS
  • Apply test-driven development with the Jasmine framework
  • Use WebSocket to build an online auction for the app
  • Adapt the app for both PCs and mobile with responsive web design
  • Create mobile versions with jQuery Mobile, Sencha Touch, and PhoneGap

Fain Yakov: author's other books


Who wrote Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile? Find out the surname, the name of the author of the book and a list of all author's works by series.

Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Enterprise Web Development
Yakov Fain
Victor Rasputnis
Anatole Tartakovsky
Viktor Gamov
Preface

This book will help web application developers and software architects pick the right strategy for developing cross-platform applications that run on a variety of desktop computers as well as mobile devices. The primary audience is developers from a large organization who need to learn how to develop web applications using the HTML5 stack.

Whats an Enterprise Application?

This book has the word enterprise in its title, and well explain what we consider to be enterprise applications by giving you some examples. Creating a web application that processes orders is not the same as creating a website to publish blogs. Enterprise applications require company-specific workflows, which usually need to be integrated with various internal systems, data sources, and processes.

Google Docs is not an enterprise web application. But Google Search Appliance, which integrates search operations with company documents, databases, processes, and tickets, and provides collaboration is: it integratesthe consumer-workforce front office with what the company does (back office).

Google Maps is not an enterprise application. But Google Maps integrated with a company site used by insurance agents to plan their daily route, create scheduling, perform address verification, and use geocoding is.

Just using a web application in a business doesnt make it an enterprise web application. If you take Gmail as is, it wont be an enterprise application until you integrate it into another process of your business.

Is an online game an enterprise application? It depends on the game. A multiplayer online roulette game hooked up to a payment system and maintaining users accounts is an enterprise web application. Butplaying Sudoku online doesnt feel too enterprisey.

How about a dating website? If the site just offers an ability to display singles, its just a publishing site because there is not much of a business there. Can you turn a dating website into an enterprise application? Its possible.

Some people will argue that an enterprise application must support multiple users and a high data load, include data grids and dashboards, be scalable, have business and persistence layers, offer professional support, and more. This is correct, but we dont believe that a web application should do all this to qualify for the adjective enterprise .

Lets create a simple definition of an enterprise web application:

An enterprise web application is one that helps an organization run its business online.

Why the Authors Wrote This Book

The authors of this book have 90 years of combined experience in developing enterprise applications. During all these years, weve been facing the same challenges regardless of which programming language we use:

  • How to make the application code base maintainable
  • How to make the application responsive by modularizing its code base
  • How to minimize the number of production issues by applying proper testing at earlier stages of the project life cycle
  • How to design a UI that looks good and is convenient for users
  • Which frameworks or libraries to pick
  • Which design patterns to apply in coding

This list can be easily extended. Ten years ago, we were developing UIs mainly in Java; five years ago, we used Adobe Flex; today, we use HTML5-related technologies. This book shares with you our understanding of how to approach these challenges in HTML5.

Who This Book Is For

Web application development with HTML5 includes HTML, JavaScript, CSS, and dozens of JavaScript frameworks. The main goal of this book is to give you a hands-on overview of developing web applications that can be run on a variety of devicesdesktops, tablets, and smartphones. We expect you to have some experience with any programming language. Knowledge of basic HTML is also required. Understanding the principles of object-oriented programming would be helpful, too.

This book is intended for software developers, team leaders, and web application architects who want to learn the following:

  • How to write web applications by using some of the popular libraries and frameworks
  • How to modularize the clients side of web applications written in JavaScript
  • How to test web applications
  • Whether applying responsive design principles is the right strategy for your application
  • Which security vulnerabilities to watch for
  • Why developing for mobile devices differs from developing for desktops
  • The pros and cons of developing mobile applications by using the HTML5 stack versus native languages
Note

If youre new to programming in JavaScript, start reading this book from the bonus online chapter, which is an introduction to JavaScript.

What This Book Is and Why Its Important

This book has a lot of breadth, but for mastering some of the topics in depth, be prepared to do additional studying. On the other hand, we provide a lot of working code samples for those who prefer studying by reading code.

This book can be important for busy professionals who dont have time to read a separate book about each and every library and framework that exist in the HTML5 universe. This book will help you to narrow the list of technologies and frameworks to be considered for the next project.

Enterprise server-side developers will also benefit from reading this book. Pretty often enterprise Java or .NET developers feel caught off guard when they need to create a new web application with a cross-platform and cross-browser UI. These strong enterprise developers with good business knowledge may not have enough exposure to how things work in the HTML5 domain. This book can be a time-saver for all server-side developers who need to start working on the frontend of web applications.

Finally, this book is important because of the way its written: youll be working on the application thats introduced next.

Introducing the Save The Child Application

To make this book more practical, we decided not to give you unrelated code snippets illustrating various syntax or techniques, but to bring all of that together in a working application (just the UI portion). While learning the various frameworks, libraries, and approaches to building UIs for web applications, youll be writing multiple versions of the same web applicationSave The Child (see ). Its a sample charity application used to collect donations for children who need medical attention.

Figure 1 Save The Childa sample application This web application will allow - photo 1
Figure 1. Save The Childa sample application

This web application will allow people to register, donate, find local kids who need help, match donors and recipients, upload images and videos, and display statistics.

Is This Even an Enterprise App?

While looking at the preceding image, you might be thinking, This doesnt look like an enterprise application. Lets see. Do you believe that an enterprise application has to consist of boring gray windows with lots of grids and forms, and some charts?True, but we have all of these elements in our application, too:

  • Clicking the Donate Now button reveals a form that has to be filled out and sent to a payment processing system.
  • The interactive live pie chart is something that many modern enterprise dashboards include.
Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile»

Look at similar books to Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile»

Discussion, reviews of the book Enterprise Web Development: Building HTML5 Applications: From Desktop to Mobile and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.