About This Title

Pages: 342
Published: June 2017
ISBN: 9781680502206
In Print

Skill Level Meter

Rails, Angular, Postgres, and Bootstrap, Second Edition

Powerful, Effective, Efficient, Full-Stack Web Development

by David Bryant Copeland

Achieve awesome user experiences and performance with simple, maintainable code! Embrace the full stack of web development, from styling with Bootstrap, building an interactive user interface with Angular 4, to storing data quickly and reliably in PostgreSQL. With this fully revised new edition, take a holistic view of full-stack development to create usable, high-performing applications with Rails 5.1.

eBook Formats:

  • PDF for desktop/tablets

  • epub for Apple Books, e-readers

  • mobi for Kindle readers

Get all eBook formats here for $27.95 (USD)

Add to Cart we accept visa, mastercard, amex, discover, paypal


Paperback Formats:

Please support indie bookstores!
Find indie bookstores in the U.S. Find indie bookstores around the world.


Rails is a great tool for building web applications, but it’s not the best at everything. Embrace the features built into your database. Learn how to use front-end frameworks. Seize the power of the application stack through Angular 4, Bootstrap, and PostgreSQL. When used together, these powerful and easy-to-use tools will open you to a new world of possibilities. This second edition is updated to cover Angular 4—a completely reworked front-end framework—and dives into new Postgres 9.6 features such as UPSERT. Also new is Webpack coverage, to develop the front-end code for your Rails application.

Create a usable and attractive login form using Bootstrap’s styles, while ensuring the database table backing it is secure using Postgres' check constraints. See how creating an advanced Postgres index for a case-insensitive search speeds up your back end—enabling you to create a dynamic user experience using Angular 4. Create reusable components that bring Bootstrap and Angular together and effectively use materialized views for caching within Postgres. Get your front end working with Webpack, use Postgres’ features from migrations, and write unit tests for all of it. All of this within Rails 5.1.

You’ll gain the confidence to work at every level of the application stack, bringing the right solution to every problem.

What You Need

This book covers Postgres 9.6, Rails 5.1, and Ruby 2.3. You should have some experience with basic Rails concepts and a cursory understanding of JavaScript, CSS, and SQL, but by no means need to be an expert. You’ll learn how to install Postgres on your computer or use a free version of it in the cloud.

Resources

Releases:

2017/06/21
P1.0
First printing.
2017/06/09
B7.0
*Updated for the latest Rails 5.1.1, Webpacker 2.0, and all the various updates in the JavaScript ecosystem. *Although we aren’t using TypeScript, the book now uses Webpacker’s Angular support to set up the entire tool chain to compile TypeScript. You’ll write code in .ts, so if you want to switch, you can. The downloadable code also creates a final version with all the JavaScript converted to TypeScript if you want to see what that’s like. *CSS is now handled differently—and better. Before, we were using Webpack to insert style tags into our markup, live. Now, we’re using Webpacker’s configuration to generate an actual .css, which is more like what Sprockets does, and more like what you’d want in a real production application. *We removed the Angular test app, as Webpacker provides enough scaffolding for us to validate the configuration. This means you can go straight to coding the app. *We changed the JavaScript module style to use the more modern import (instead of require). import is how the latest versions of JavaScript will work, so this should age better and be more idiomatic. *We removed the bits about running Webpack’s dev server in tests. Rails 5.1 wants developers to either run Webpack manually, or have it run once before tests are run. We’re doing the latter. This isn’t a perfect workflow, but it’s simpler and one less thing to have to wrestle with when getting this stuff going. This workflow does allow you to avoid running Webpack for unit tests, whereas the previous version would run it every time. *The code examples are now organized in a better way. *The book is finished in production and heading to layout.
2017/04/07
B6.0
* Updated to reference Angular 4 instead of Angular 2. Despite the drastic version number change, not much really changed for us, and all the examples still work. Also, there aren’t any relevant new features we need to worry about. * With the upcoming release of Rails 5.1, all the JavaScript got way better due to…Webpacker! This makes initial set up much simpler and more canonical. * Unit tests are now run via Karma, which uses Webpack during tests. This means no more proxyquire, and overall the tests are way simpler. * Due to Webpacker, the locations of various files have changed. No more webpack/ top-level directory. Everything is now the official Rails way of doing things. * We addressed some confusion around how the materialized views interact with tests. * We changed how we interact with Yarn and package.json by preferring the use of the yarn add command over hand-editing the file.
2017/01/18
B5.0
The book is content-complete and heading to production.

Contents & Extracts

Introduction

The Application Stack

How to Read This Book

What You Need to Know

Online Forum and Errata

  • Set Up the Environment
    • Installing Ruby, Rails, and Postgres
    • Creating the Rails Application
    • Setting Up Bootstrap with Yarn and Webpack
    • Next: Authentication with Devise, Styled by Bootstrap
  • Create a Great-Looking Login with Bootstrap and Devise excerpt
    • Adding Authentication with Devise
    • Styling the Login and Registration Forms
    • Validating Registration
    • Next: Using Postgres to Make Our Login More Secure
  • Secure the User Database with Postgres Constraints
    • Exposing the Vulnerability Devise and Rails Leave Open
    • Preventing Bad Data Using Check Constraints
    • Why Use Rails Validations?
    • Next: Using Postgres Indexes to Speed Up a Fuzzy Search
  • Perform Fast Queries with Advanced Postgres Indexes
    • Implementing a Basic Fuzzy Search with Rails
    • Understanding Query Performance with the Query Plan excerpt
    • Indexing Derived and Partial Values
    • Next: Better-Looking Results with Bootstrap’s List Group
  • Create Clean Search Results with Bootstrap Components
    • Creating Google-Style Search Results Without Tables
    • Paginating the Results Using Bootstrap’s Components
    • Next: Angular!
  • Build a Dynamic UI with Angular
    • Configuring Rails and Angular
    • Porting Our Search to Angular
    • Changing Our Search to Use Typeahead excerpt
    • Next: Testing
  • Test This Fancy New Code
    • Installing RSpec for Testing
    • Testing Database Constraints
    • Running Headless Acceptance Tests in PhantomJS
    • Writing Unit Tests for Angular Components
    • Next: Level Up on Everything
  • Create a Single-Page App Using Angular’s Router
    • Storing View Templates in HTML Files
    • Configuring Angular’s Router for User Navigation
    • Navigating the User Interface Client-side
    • Implementing Back-End Integration Using TDD
    • Next: Design Using Grids
  • Design Great UIs with Bootstrap’s Grid and Components
    • The Grid: The Cornerstone of a Web Design excerpt
    • Using Bootstrap’s Grid
    • Adding Polish with Bootstrap Components
    • Next: Populating the View Easily and Efficiently
  • Cache Complex Queries Using Materialized Views
    • Understanding the Performance Impact of Complex Data
    • Using Materialized Views for Better Performance
    • Keeping Materialized Views Updated
    • Next: Combining Data with a Second Source in Angular
  • Asynchronously Load Data from Many Sources
    • Understanding Asynchronous Requests and Observables
    • Separating the App into Components
    • Sharing Data Between Components
    • Pulling Data from a Second Source
    • Using Bootstrap’s Progress Bar When Data Is Loading
    • Next: Sending Changes Back to the Server
  • Wrangle Forms and Validations with Angular
    • Marrying Angular’s and Bootstrap’s Form Validations
    • Reusing Markup with a Generic Text Field Component
    • Customizing the Component’s Behavior and Appearance
    • Listening for User Change Events
    • Saving Changes to the Server
    • Next: Everything Else
  • Dig Deeper
    • Unlocking More of Postgres’s Power
    • Leveling Up with Angular
    • Getting Everything Out of Bootstrap
    • The End
  • Full Listing of Customer Detail Page HTML
  • Creating Customer Address Seed Data
  • Customer Details Extracted Components

Author

David Bryant Copeland has been a professional programmer since 1995. He’s worked at LivingSocial and Opower, and is the director of engineering at fashion start-up Stitch Fix. He wrote The Senior Software Engineer and Build Awesome Command-Line Applications in Ruby 2 and is the coauthor of Agile Web Development with Rails 5.1.

eBook Formats:

  • PDF for desktop/tablets

  • epub for Apple Books, e-readers

  • mobi for Kindle readers

Get all eBook formats here for $27.95 (USD)

Add to Cart we accept visa, mastercard, amex, discover, paypal


Paperback Formats:

Please support indie bookstores!
Find indie bookstores in the U.S. Find indie bookstores around the world.

Related Titles:

Skill Level Meter

About This Title

Pages: 342
Published: June 2017
ISBN: 9781680502206
Edition: 1
In Print