reklama - zainteresowany?

Learning Web App Development - Helion

Learning Web App Development
ebook
Autor: Semmy Purewal
ISBN: 978-14-493-7141-8
stron: 306, Format: ebook
Data wydania: 2014-02-13
Księgarnia: Helion

Cena książki: 109,65 zł (poprzednio: 127,50 zł)
Oszczędzasz: 14% (-17,85 zł)

Dodaj do koszyka Learning Web App Development

Grasp the fundamentals of web application development by building a simple database-backed app from scratch, using HTML, JavaScript, and other open source tools. Through hands-on tutorials, this practical guide shows inexperienced web app developers how to create a user interface, write a server, build client-server communication, and use a cloud-based service to deploy the application.

Each chapter includes practice problems, full examples, and mental models of the development workflow. Ideal for a college-level course, this book helps you get started with web app development by providing you with a solid grounding in the process.

  • Set up a basic workflow with a text editor, version control system, and web browser
  • Structure a user interface with HTML, and include styles with CSS
  • Use JQuery and JavaScript to add interactivity to your application
  • Link the client to the server with AJAX, JavaScript objects, and JSON
  • Learn the basics of server-side programming with Node.js
  • Store data outside your application with Redis and MongoDB
  • Share your application by uploading it to the cloud with CloudFoundry
  • Get basic tips for writing maintainable code on both client and server

Dodaj do koszyka Learning Web App Development

 

Osoby które kupowały "Learning Web App Development", wybierały także:

  • Windows Media Center. Domowe centrum rozrywki
  • Ruby on Rails. Ćwiczenia
  • DevOps w praktyce. Kurs video. Jenkins, Ansible, Terraform i Docker
  • Przywództwo w Å›wiecie VUCA. Jak być skutecznym liderem w niepewnym Å›rodowisku
  • Scrum. O zwinnym zarzÄ…dzaniu projektami. Wydanie II rozszerzone

Dodaj do koszyka Learning Web App Development

Spis treści

Learning Web App Development eBook -- spis treści

  • Learning Web Application Development
  • Dedication
  • Preface
    • Technology Choices
    • Is This Book for You?
    • Learning with This Book
    • Teaching with This Book
    • Where to Go for Help
    • General Comments on Code
    • Conventions Used in This Book
    • Using Code Examples
    • Safari Books Online
    • How to Contact Us
    • Acknowledgments
      • Errata Reporters
  • 1. The Workflow
    • Text Editors
      • Installing Sublime Text
      • Sublime Text Basics
    • Version Control
      • Installing Git
      • Unix Command-Line Basics
        • Where am I?
        • Changing directories
        • Creating directories
        • Filesystems and trees
      • Git Basics
        • Configuring Git for the first time
        • Initializing a Git repository
        • Determining the status of our repository
        • Our first commits!
        • Viewing the history of our repo
        • Saving versus committing
    • Browsers
      • Installing Chrome
    • Summary
    • More Practice and Further Reading
      • Memorization
      • Sublime Text
      • Emacs and Vim
      • Unix Command Line
      • More About Git
      • GitHub
  • 2. The Structure
    • Hello, HTML!
      • Tags Versus Content
      • <p> Is for Paragraph
      • Comments
      • Headings and Anchors and Lists, Oh My!
      • Generalizations
    • The Document Object Model and Trees
    • Using HTML Validation to Identify Problems
    • Amazeriffic
      • Identifying Structure
      • Visualizing Structure with a Tree
      • Implementing the Structure with Our Workflow
      • Structuring the Main Content
      • Structuring the Footer
    • Summary
    • More Practice and Further Reading
      • Memorization
      • Tree Diagrams
      • Build the FAQ Page for Amazeriffic
      • More About HTML
  • 3. The Style
    • Hello, CSS!
      • Rulesets
      • Comments
      • Padding, Border, and Margin
    • Selectors
      • Classes
      • Pseudoclasses
      • More Complex Selectors
      • Cascading Rules
      • Inheritance
    • Layouts with Floats
      • The clear Property
    • Working with Fonts
    • Resetting Browser Inconsistencies
    • Using CSS Lint to Identify Potential Problems
    • Interacting and Troubleshooting with the Chrome Developer Tools
    • Styling Amazeriffic
      • The Grid
      • Creating the Columns
      • Adding and Manipulating Fonts
      • A Few More Modifications
    • Summary
    • More Practice and Further Reading
      • Memorization
      • CSS Selectors Practice
      • Style the FAQ Page for Amazeriffic
      • Cascading Rules
      • Responsiveness and Responsive Libraries
  • 4. The Interactivity
    • Hello, JavaScript!
    • Our First Interactive App
      • The Structure
      • The Style
      • The Interactivity
        • Handling click events
        • Dynamically manipulating the DOM
        • Squashing a bug
        • Clearing out the input box
        • Making the Enter key work as expected
        • Fading in our new comment
        • Refactoring for simplicity
    • jQuery Generalizations
      • Setting Up a Project
      • Comments
      • Selectors
      • DOM Manipulation
        • Adding elements to the DOM
        • Removing elements from the DOM
      • Events and Asynchronicity
    • JavaScript Generalizations
      • Interacting with JavaScript in the Chrome JavaScript Console
      • Variables and Types
      • Functions
      • Selection
      • Iteration
      • Arrays
    • Using JSLint to Identify Potential Problems
    • Adding Interactivity to Amazeriffic
      • Getting Started
      • The Structure and Style
      • The Interactivity
        • Creating the tab functionality
        • Refactoring the code using a function
        • Refactoring the code using a loop
        • Refactoring the code using a forEach loop
        • Manipulating content
        • Setting up the tab content
    • Summary
    • More Practice and Further Reading
      • Memorization
      • jQuery Plug-ins
      • jQuery Selectors
      • FizzBuzz
      • Array Practice
      • Project Euler
      • Other JavaScript References
  • 5. The Bridge
    • Hello, JavaScript Objects!
      • Representing Playing Cards
      • Generalizations
    • Communication Between Computers
      • JSON
      • AJAX
      • Accessing an External JSON File
      • Overcoming Browser Security Restrictions
      • The getJSON Function
      • A JSON Array
      • So What?
    • Getting Images from Flickr
    • Adding a Tags Feature to Amazeriffic
      • The map Function
      • Adding a Tags Tab
      • Building the UI
      • Creating an Intermediate Tags Data Structure
        • Setting up a test bed
        • My solution
      • Tags as Part of Our Input
    • Summary
    • More Practice and Further Reading
      • Flickr Slideshow
      • Object Practice
      • Other APIs
  • 6. The Server
    • Setting Up Your Environment
      • Installing VirtualBox and Vagrant
      • Building Your Virtual Machine
      • Connecting to Your Virtual Machine with SSH
      • Hello, Node.js!
    • Mental Models
      • Clients and Servers
      • Hosts and Guests
      • Practicalities
    • Hello, HTTP!
    • Modules and Express
      • Installing Express with NPM
      • Our First Express Server
      • Sending Your Client App
      • Generalizations
    • Counting Tweets
      • Getting Your Twitter Credentials
      • Connecting to the Twitter API
      • Whats Happening Here?
      • Storing Counts
        • Using the indexOf function to find words
        • Using the setInterval function to schedule tasks
      • Modularizing Our Tweet Counter
      • Importing Our Module Into Express
      • Setting Up a Client
    • Creating a Server for Amazeriffic
      • Setting Up Our Directories
      • Initializing a Git Repository
      • Building the Server
      • Running the Server
      • Posting Information to the Server
    • Summary
    • More Practice and Further Reading
      • Installing Node.js Locally
      • JSHint and CSS Lint via NPM
      • Generalizing Our Tweet Counter Code
      • Poker API
  • 7. The Data Store
    • NoSQL Versus SQL
    • Redis
      • Interacting with the Redis Command-Line Client
      • Installing the Redis Module via a package.json File
      • Interacting with Redis in Our Code
      • Initializing the Counts from the Redis Store
      • Using mget to Get Multiple Values
    • MongoDB
      • Interacting with the MongoDB Command-Line Client
      • Modeling Data with Mongoose
        • Models
      • Storing Amazeriffic ToDos
    • Summary
    • More Practice and Further Reading
      • Poker API
      • Other Database References
  • 8. The Platform
    • Cloud Foundry
    • Creating an Account
    • Getting Your App Ready for Deployment
    • Deploying Our App
    • Getting Information About Your Apps
    • Updating Your App
    • Deleting Apps from Cloud Foundry
    • Dependencies and package.json
    • Binding Redis to Your App
    • Binding MongoDB to Your App
    • Summary
    • More Practice and Further Reading
      • Poker API
      • Other Platforms
  • 9. The Application
    • Refactoring Our Client
      • Generalizing Meaningful Concepts
      • AJAXifying Our Tabs
      • Ridding Ourselves of Hacks
      • Handling AJAX Errors
    • Refactoring Our Server
      • Code Organization
        • Separating concerns: models
        • Separating concerns: controllers
      • HTTP Verbs, CRUD, and REST
      • Setting Up Routes by ID
      • Using jQuery for put and delete Requests
      • HTTP Response Codes
      • Model-View-Controller
    • Adding Users to Amazeriffic
      • Building the User Model
      • Building the User Controller
      • Setting Up Routes
      • Improving Our ToDo Controller Actions
    • Summary
    • More Practice and Further Reading
      • Removing ToDos
      • Adding a User Admin Page
      • Views Using EJS and Jade
      • Build Another App
      • Ruby on Rails
  • Index
  • Colophon
  • Copyright

Dodaj do koszyka Learning Web App Development

Code, Publish & WebDesing by CATALIST.com.pl



(c) 2005-2024 CATALIST agencja interaktywna, znaki firmowe należą do wydawnictwa Helion S.A.