Web Development with CoffeeScript and Sass

Brian Hogan
Brian HoganProgrammer and writer.
Web Development with
      Sass and CoffeeScript
      Brian P. Hogan




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
What about you?



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Web pages run on CSS
               and JavaScript



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
CSS feels limited
                   and repetitive



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
and many people don’t
            really understand
               JavaScript


Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
We need to use
          better tools to build
            modern web apps.


Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
CoffeeScript lets us
          write complex JS with
             simpler syntax.



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Sass gives us
                extensions to CSS.



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Sass + CoffeeScript +
           automated workflow


Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
CoffeeScript



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com     Rate this talk at http://spkr8.com/t/8682
It’s more of a new
                syntax than a new
                     language.


Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Some jQuery




                           $(function() {
                               $("a#get").click(function(e) {
                               .get("/ajax/get",
                                  {name: "John",time: "2pm"},
                                  function(data) {
                                    $("#result").html(data);
                                  }
                               );
                             });
                           });




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com              Rate this talk at http://spkr8.com/t/8682
in CoffeeScript




                           $ ->
                             $("a#get").click (e) ->
                                $.get "/ajax/get",
                                  {name: "John", time: "2pm"},
                                  (data) ->
                                     $("#result").html(data)




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com              Rate this talk at http://spkr8.com/t/8682
CoffeeScript borrows
            from Python and Ruby
                  syntax.



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
CoffeeScript uses
        significant whitespace
              for scope.



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
CoffeeScript compiles
          to regular, plain old
               JavaScript.



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Declaring variables and objects

                                               var box, colors, firstName, lastName;

      firstName = "Homer"                      firstName = "Homer";
      lastName = "Simpson"                     lastName = "Simpson";

      colors = ["Green", "Blue", "Red"]        colors = ["Green", "Blue", "Red"];

      box =                                    box = {
        height: 40                                height: 40,
        width: 60                                 width: 60,
        color: red                                color: red
                                               };




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com             Rate this talk at http://spkr8.com/t/8682
JavaScript functions

        // function declaration. Visible anywhere (hoisting)
          (function hello(name){
           alert("Hello " + name + "!");
        }


        // function expression, visible to the scope of the var
        var hello = function(name){
          alert("Hello " + name + "!");
        }




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com            Rate this talk at http://spkr8.com/t/8682
Function declaration in CoffeeScript


       hello ->
         alert "Hello"




       hello (name) ->
         alert "Hello #{name}"



                                -> (thin arrow)




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com          Rate this talk at http://spkr8.com/t/8682
CoffeeScript uses function expressions.


       hello (name) ->
         alert "Hello #{name}!"




        var hello = function(name){
          alert("Hello " + name + "!");
        }




                   #{} interpolates strings.

Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com       Rate this talk at http://spkr8.com/t/8682
New syntax
              means new features.



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
a jQuery example

                $(function() {
                  var displayError, displaySuccess, url;
                  $("form").submit(function(event) {});
                  event.preventDefault();
                  url = $(this).attr("href");
                  $.ajax({
                     url: url + ".js",
                     success: function(data, status, xhr) {
                        displaySuccess($("#form"));
                     },
                     error: function(xhr, status, error) {
                        displayError(error);
                     }
                  });
                  displaySuccess = function(form) {
                     var element;
                     element = $("<p>Thanks for signing up!").addClass("success");
                     element.insertAfter(form);
                     form.hide();
                  };
                  displayError = function(error) {
                     $("#notice").attr("html", error);
                  };
                });


Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                     Rate this talk at http://spkr8.com/t/8682
jQuery $(function(){})

                $ ->
                  $("form").submit (event) ->

                     event.preventDefault()
                     url = $(this).attr "href"

                     $.ajax
                       url: url + ".js"
                       success: (data, status, xhr) ->
                         displaySuccess($("form"))
                       error: (xhr, status, error) ->
                         displayError error

                  displaySuccess = (form) ->
                   element = $("<p>Thanks for signing up!").addClass("success")
                   element.insertAfter form
                   form.hide()

                  displayError = (error) ->
                    $("#notice").attr "html", error




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                    Rate this talk at http://spkr8.com/t/8682
jQuery event handler

                $ ->
                  $("form").submit (event) ->

                     event.preventDefault()
                     url = $(this).attr "href"

                     $.ajax
                       url: url + ".js"
                       success: (data, status, xhr) ->
                         displaySuccess($("form"))
                       error: (xhr, status, error) ->
                         displayError error

                  displaySuccess = (form) ->
                   element = $("<p>Thanks for signing up!").addClass("success")
                   element.insertAfter form
                   form.hide()

                  displayError = (error) ->
                    $("#notice").attr "html", error




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                    Rate this talk at http://spkr8.com/t/8682
jQuery $.ajax

                $ ->
                  $("form").submit (event) ->

                     event.preventDefault()
                     url = $(this).attr "href"

                     $.ajax
                       url: url + ".js"
                       success: (data, status, xhr) ->
                         displaySuccess($("form"))
                       error: (xhr, status, error) ->
                         displayError error

                  displaySuccess = (form) ->
                   element = $("<p>Thanks for signing up!").addClass("success")
                   element.insertAfter form
                   form.hide()

                  displayError = (error) ->
                    $("#notice").attr "html", error




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                    Rate this talk at http://spkr8.com/t/8682
success and error callbacks

                $ ->
                  $("form").submit (event) ->

                     event.preventDefault()
                     url = $(this).attr "href"

                     $.ajax
                       url: url + ".js"
                       success: (data, status, xhr) ->
                         displaySuccess($("form"))
                       error: (xhr, status, error) ->
                         displayError error

                  displaySuccess = (form) ->
                   element = $("<p>Thanks for signing up!").addClass("success")
                   element.insertAfter form
                   form.hide()

                  displayError = (error) ->
                    $("#notice").attr "html", error




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                    Rate this talk at http://spkr8.com/t/8682
-> leaves (this) scope alone.

                $ ->
                  $("form").submit (event) ->

                     event.preventDefault()
                     url = $(this).attr "href"

                     $.ajax
                       url: url + ".js"
                       success: (data, status, xhr) ->
                         displaySuccess($("form"))
                       error: (xhr, status, error) ->
                         displayError error

                  displaySuccess = (form) ->
                   element = $("<p>Thanks for signing up!").addClass("success")
                   element.insertAfter form
                   form.hide()

                  displayError = (error) ->
                    $("#notice").attr "html", error




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                    Rate this talk at http://spkr8.com/t/8682
=>



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
=> binds this to the function body

                $ ->
                  $("form").submit (event) ->

                     event.preventDefault()
                     url = $(this).attr "href"

                     $.ajax
                       url: url + ".js"
                       success: (data, status, xhr) =>
                         displaySuccess($(this))
                       error: (xhr, status, error) ->
                         displayError error

                  displaySuccess = (form) ->
                   element = $("<p>Thanks for signing up!").addClass("success")
                   element.insertAfter form
                   form.hide()

                  displayError = (error) ->
                    $("#notice").attr "html", error




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                    Rate this talk at http://spkr8.com/t/8682
Comprehensions



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Simple iteration


                  alert color for color in ["red", "green", "blue"]




         var colors = ["red", "green", "blue"];
         for (i = 0, length = colors.length; i < length; i++) {
           var color = colors[i];
           alert(color);
         }




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                    Rate this talk at http://spkr8.com/t/8682
“for in”


         people = [
           {name: "Homer", age: 42}
           {name: "Bart", age: 10}
         ]

         for person in people
           alert "#{person.name} is #{person.age} years old"




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com         Rate this talk at http://spkr8.com/t/8682
That’s just the
                        beginning.



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Existential operator (?)


          total ?= 0




         if (typeof total !== "undefined" && total !== null) {
            total;
         } else {
            total = 0;
         };




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com       Rate this talk at http://spkr8.com/t/8682
Object-oriented
                        JavaScript



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Classes
                         var Person, p;
                         Person = (function() {
                           function Person(options) {
                              this.firstname = options.firstname;
                              this.lastname = options.lastname;
                              this.age = options.age;
                           }
                           Person.prototype.fullname = function() {
                              return "" + this.firstname + " " + this.lastname;
                           };
                           return Person;
                         })();

                         p = new Person({
                           firstname: "Brian",
                           lastname: "Hogan"
                         });

                         alert(p.fullname());




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                     Rate this talk at http://spkr8.com/t/8682
Classes
                         var Person, p;
                         Person = (function() {
                           function Person(options) {
                              this.firstname = options.firstname;
                              this.lastname = options.lastname;
                                   class Person
                              this.age = options.age;
                                     constructor: (options) ->
                           }
                                       @firstname = options.firstname
                           Person.prototype.fullname = function() {
                                       @lastname = options.lastname
                              return "" + this.firstname + " " + this.lastname;
                                       @age = options.age
                           };
                           return Person;
                                     fullname: ->
                         })();
                                       "#{@firstname} #{@lastname}"
                         p = new Person({
                           firstname: "Brian",
                           lastname:="Hogan"
                                  p   new Person
                         });      alert p.fullname()


                         alert(p.fullname());




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                     Rate this talk at http://spkr8.com/t/8682
We can even extend classes!


       class basicWindow
         constructor: ->                      class mainWindow extends basicWindow
           @window = Ti.UI.createWindow({       constructor: ->
              backgroundColor: "#F5F5ED"          super
           })                                     @window.backgroundColor = "#fff"

         open: ->
           @window.open()




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com               Rate this talk at http://spkr8.com/t/8682
How do we use it?
                                In the web browser itself

                                via Node.js

                                With Ruby, via Guard




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com            Rate this talk at http://spkr8.com/t/8682
In the browser?
                       <script language="text/coffeescript">
                         people = [
                           {name: "Homer", age: 42}
                           {name: "Bart", age: 10}
                         ]

                         for person in people
                           do (person) ->
                             alert "#{person.name} is #{person.age} years old"
                       </script>

                       <script src="coffee-script.js"></script>




                                (this is slow.)

Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                     Rate this talk at http://spkr8.com/t/8682
With Node.js
              Install Node.js

              Install npm

              npm install -g coffee-script

              coffee --compile --output js/ coffee/

              coffee -o js/ -cw coffee/




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Ruby and Guard
              Install Ruby

              gem install guard-coffeescript

              In our project

                   guard init coffeescript

                   guard




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com    Rate this talk at http://spkr8.com/t/8682
Guard watches input
      folders for changes
      and writes output
      files.

Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Guard works with Sass
      too.



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Sass
                                Syntactically Awesome
                                Stylesheets




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com      Rate this talk at http://spkr8.com/t/8682
Sass gives CSS
      everything programmers
      want.



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
CSS

                                .sidebar {
                                  color: #000;
                                  border: 1px solid #000;
                                }

                                .sidebar p {
                                  margin-bottom: 20px;
                                }

                                .sidebar ul {
                                  margin-bottom: 10px;
                                }

                                .sidebar h1 {
                                  margin-bottom: 0;
                                }

                                .main{
                                  color: #000;
                                }




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com               Rate this talk at http://spkr8.com/t/8682
CSS

                                .sidebar {
                                  color: #000;
                                  border: 1px solid #000;
                                }

                                .sidebar p {
                                  margin-bottom: 20px;
                                }

                                .sidebar ul {
                                  margin-bottom: 10px;
                                }

                                .sidebar h1 {
                                  margin-bottom: 0;
                                }

                                .main{
                                  color: #000;
                                }




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com               Rate this talk at http://spkr8.com/t/8682
CSS

                                .sidebar {
                                  color: #000;
                                  border: 1px solid #000;
                                }

                                .sidebar p {
                                  margin-bottom: 20px;
                                }

                                .sidebar ul {
                                  margin-bottom: 10px;
                                }

                                .sidebar h1 {
                                  margin-bottom: 0;
                                }

                                .main{
                                  color: #000;
                                }




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com               Rate this talk at http://spkr8.com/t/8682
Sass to
      the rescue!




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Variables!

                                $measure: 20px
                                $color: #ce4dd6

                                .sidebar
                                  background-olor: $color
                                  border: 1px solid lighten($color, 20%)

                                  p
                                       margin-bottom: $measure

                                  ul
                                       margin-bottom: $measure / 2

                                  h1
                                       margin-bottom: 0




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                         Rate this talk at http://spkr8.com/t/8682
Variables and helper functions!

                                $measure: 20px
                                $color: #ce4dd6

                                .sidebar
                                  background-olor: $color
                                  border: 1px solid lighten($color, 20%)

                                  p
                                       margin-bottom: $measure

                                  ul
                                       margin-bottom: $measure / 2

                                  h1
                                       margin-bottom: 0




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                         Rate this talk at http://spkr8.com/t/8682
Scope with nesting

                                $measure: 20px
                                $color: #ce4dd6

                                .sidebar
                                  background-olor: $color
                                  border: 1px solid lighten($color, 20%)

                                  p
                                       margin-bottom: $measure

                                  ul
                                       margin-bottom: $measure / 2

                                  h1
                                       margin-bottom: 0




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                         Rate this talk at http://spkr8.com/t/8682
Indented Sass                                                SCSS
         $measure: 20px                             $measure: 20px;
         $color: #000                               $color: #000;

         .sidebar                                   .sidebar{
           color: $color                              color: $color;
           border: 1px solid $color                   border: 1px solid $color;

           p                                            p{
                margin-bottom: $measure                      margin-bottom: $measure;
                                                        }
           ul
                margin-bottom: $measure / 2             ul{
                                                          margin-bottom: $measure / 2;
           h1                                           }
                margin-bottom: 0
                                                        h1{
                                                          margin-bottom: 0;
                                                        }
                                                    }




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                 Rate this talk at http://spkr8.com/t/8682
But wait...
          there’s more!




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Modularization

            _mixins.scss                    @import "mixins";
                                            @import "reset";
                                            @import "base";

            _reset.scss                     @import "fonts";




            _base.scss




            _fonts.scss




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com         Rate this talk at http://spkr8.com/t/8682
Reusable Functions (mixins)
                                             blockquote {
      @mixin rounded($radius){
                                               width: 225px;
                border-radius: $radius;
                                               padding: 15px 30px;
           -moz-border-radius: $radius;
                                               margin: 0;
        -webkit-border-radius: $radius;
                                               position: relative;
      }
                                               background: #faa;
                                               @include rounded(20px);
                                             }



                                              .button {
                                                cursor: pointer;
                                                color: #000;
                                                text-decoration: none;
                                                @include rounded(12px);
                                              }




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com             Rate this talk at http://spkr8.com/t/8682
Mixins + Interation + Variables

            @mixin shadow($x, $y, $offset, $color)
              @each $prefix in "", -moz-, -webkit-, -o-, -khtml-
                #{$prefix}box-shadow: $x $y $offset $color




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com        Rate this talk at http://spkr8.com/t/8682
Mixins + Interation + Variables

            @mixin shadow($x, $y, $offset, $color)
              @each $prefix in "", -moz-, -webkit-, -o-, -khtml-
                #{$prefix}box-shadow: $x $y $offset $color




                       box-shadow: 5px 5px 5px #dddddd;
                       -moz-box-shadow: 5px 5px 5px #dddddd;
                       -webkit-box-shadow: 5px 5px 5px #dddddd;
                       -o-box-shadow: 5px 5px 5px #dddddd;
                       -khtml-box-shadow: 5px 5px 5px #dddddd; }




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com            Rate this talk at http://spkr8.com/t/8682
Create well-organized
          folders and libraries
             of stylesheets.




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
or use Compass.




                   http://compass-style.org/




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Compass has helpers

             @import 'compass'
             @include box-shadow(#ddd 5px 5px 5px)




                       box-shadow: 5px 5px 5px #dddddd;
                       -moz-box-shadow: 5px 5px 5px #dddddd;
                       -webkit-box-shadow: 5px 5px 5px #dddddd;
                       -o-box-shadow: 5px 5px 5px #dddddd;}




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com            Rate this talk at http://spkr8.com/t/8682
How do we use it?

                                via Sass

                                via a supported IDE

                                With Ruby, via Guard




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com              Rate this talk at http://spkr8.com/t/8682
with Sass

              Install Ruby

              $ gem install sass

              $ sass --watch sass:stylesheets




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com       Rate this talk at http://spkr8.com/t/8682
Ruby and Guard
              Install Ruby

              gem install guard-sass

              In our project

                   guard init sass

                   guard



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com    Rate this talk at http://spkr8.com/t/8682
Using Sass and
                         CoffeeScript
                           together


Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Mindscape Web
                            Workbench
               http://www.mindscapehq.com/products/web-workbench




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com         Rate this talk at http://spkr8.com/t/8682
Ruby and Guard
              Install Ruby

              gem install guard-sass guard-
              coffeescript

              In our project

                   guard init sass

                   guard init coffeescript

                   guard

Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com    Rate this talk at http://spkr8.com/t/8682
Let’s talk deployment



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Rails 3.1 and
                           Capistrano



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Asset Packaging



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
So instead of this...




             <link rel="stylesheet" href="stylesheets/layout.css">
             <link rel="stylesheet" href="stylesheets/style.css">
             <script src="javascripts/jquery-1.7.0.min.js"></script>
             <script src="javascripts/app.js"></script>




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com             Rate this talk at http://spkr8.com/t/8682
...let’s do this:




             <link rel="stylesheet" href="assets/app.css">
             <script src="assets/app.js"></script>




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com           Rate this talk at http://spkr8.com/t/8682
Ruby + Guard + Jammit

                      Install Ruby

                      $ gem install guard-jammit




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com        Rate this talk at http://spkr8.com/t/8682
Sass, CoffeeScript,
                Jammit
              watch Sass files for changes

                   Place output css in tmp/ folder

              watch CoffeeScript files for changes

                   Place output js in tmp/ folder

              Use Jammit to combine them.

Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com    Rate this talk at http://spkr8.com/t/8682
config/assets.yml
               stylesheets:
                 app:
                   - tmp/app.css
                   - tmp/style.css

               javascripts:
                 app:
                   - javascripts/jquery-1.6.4.js
                   - tmp/app.js




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com          Rate this talk at http://spkr8.com/t/8682
Guardfile

                guard "coffeescript", :input => "coffeescripts", :output => "tmp"

                guard "sass", :input => "sass", :output => "tmp"

                guard "jammit" do
                  watch(/^javascripts/(.*).js/)
                  watch(/^stylesheets/(.*).css/)
                  watch(/^tmp/(.*).js/)
                  watch(/^tmp/(.*).css/)
                end




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                        Rate this talk at http://spkr8.com/t/8682
Jammit places
                          files in
                        public/assets
            <link rel="stylesheet" href="assets/app.css">
            <script src="assets/app.js"></script>




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com        Rate this talk at http://spkr8.com/t/8682
Deploy with Rake
                   SERVER = "yourhost.com"
                   USERNAME = "yourusername"
                   REMOTE_FOLDER = "/home/#{USERNAME}/yourhost.com"
                   REMOTE_FOLDER = 22
                   require 'net/scp'

                   desc "compile CSS, js files"
                   task :compile do
                     require 'guard'
                     Guard.setup
                     Guard::Dsl.evaluate_guardfile
                     Guard::guards.each{|guard| guard.run_all}
                   end

                   desc "Deploy web site"
                   task :deploy => :compile do
                     Net::SSH.start(SERVER, USERNAME, {:port => PORT} ) do |ssh|
                       ssh.sftp.rmdir File.join(REMOTE_FOLDER, "public")
                       ssh.scp.upload! "public", REMOTE_FOLDER, :recursive => true
                     end
                   end




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com                     Rate this talk at http://spkr8.com/t/8682
qedproject
      https://github.com/napcs/qedproject




Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com       Rate this talk at http://spkr8.com/t/8682
qedproject
              Install Ruby

              gem install qedproject

              qedproject myapp -c -s -a -l jquery

                   creates app with Sass,
                   CoffeeScript, Asset packaging, and
                   jQuery

                   Sets up Guard and a simple Rake
                   file for deployment
Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com       Rate this talk at http://spkr8.com/t/8682
Demo



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com    Rate this talk at http://spkr8.com/t/8682
Short syntax                     Nested
                                           Selectors
          Catch errors at
          compile time                     Variables

          List                             Mixins
          Comprehensions
                                           Composition
          Classes



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
With asset packaging
and automated deployment...



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
...CoffeeScript and Sass
      make developers happy.



Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com   Rate this talk at http://spkr8.com/t/8682
Questions?




    http://pragprog.com/book/wbdev/web-
            development-recipes
Brian P. Hogan
twitter: @bphogan
www.webdevelopmentrecipes.com       Rate this talk at http://spkr8.com/t/8682
1 of 88

Recommended

WIRED and the WP REST API by
WIRED and the WP REST APIWIRED and the WP REST API
WIRED and the WP REST APIkvignos
5.5K views43 slides
Wsomdp by
WsomdpWsomdp
Wsomdpriahialae
1.5K views30 slides
Semantic Web & TYPO3 by
Semantic Web & TYPO3Semantic Web & TYPO3
Semantic Web & TYPO3André Wuttig
687 views37 slides
API Pain Points (PHPNE) by
API Pain Points (PHPNE)API Pain Points (PHPNE)
API Pain Points (PHPNE)Phil Sturgeon
2.6K views59 slides
Testing TYPO3 Applications by
Testing TYPO3 ApplicationsTesting TYPO3 Applications
Testing TYPO3 ApplicationsAndré Wuttig
1.4K views56 slides
Yql && Raphaël by
Yql && RaphaëlYql && Raphaël
Yql && RaphaëlLachlan Hardy
901 views45 slides

More Related Content

What's hot

PHP Backdoor: The rise of the vuln by
PHP Backdoor: The rise of the vulnPHP Backdoor: The rise of the vuln
PHP Backdoor: The rise of the vulnSandro Zaccarini
458 views26 slides
Api pain points by
Api pain pointsApi pain points
Api pain pointsPhil Sturgeon
3.6K views57 slides
Php web backdoor obfuscation by
Php web backdoor obfuscationPhp web backdoor obfuscation
Php web backdoor obfuscationSandro Zaccarini
1.4K views56 slides
GraphQL, l'avenir du REST par François ZANINOTTO by
GraphQL, l'avenir du REST par François ZANINOTTOGraphQL, l'avenir du REST par François ZANINOTTO
GraphQL, l'avenir du REST par François ZANINOTTOLa Cuisine du Web
642 views134 slides
Building Things Fast - and getting approval by
Building Things Fast - and getting approvalBuilding Things Fast - and getting approval
Building Things Fast - and getting approvalSimon Willison
1.7K views82 slides
SULTHAN's - PHP MySQL programs by
SULTHAN's - PHP MySQL programsSULTHAN's - PHP MySQL programs
SULTHAN's - PHP MySQL programsSULTHAN BASHA
91 views21 slides

What's hot(20)

GraphQL, l'avenir du REST par François ZANINOTTO by La Cuisine du Web
GraphQL, l'avenir du REST par François ZANINOTTOGraphQL, l'avenir du REST par François ZANINOTTO
GraphQL, l'avenir du REST par François ZANINOTTO
La Cuisine du Web642 views
Building Things Fast - and getting approval by Simon Willison
Building Things Fast - and getting approvalBuilding Things Fast - and getting approval
Building Things Fast - and getting approval
Simon Willison1.7K views
SULTHAN's - PHP MySQL programs by SULTHAN BASHA
SULTHAN's - PHP MySQL programsSULTHAN's - PHP MySQL programs
SULTHAN's - PHP MySQL programs
SULTHAN BASHA91 views
Elasticsearch – mye mer enn søk! [JavaZone 2013] by foundsearch
Elasticsearch – mye mer enn søk! [JavaZone 2013]Elasticsearch – mye mer enn søk! [JavaZone 2013]
Elasticsearch – mye mer enn søk! [JavaZone 2013]
foundsearch812 views
Php 102: Out with the Bad, In with the Good by Jeremy Kendall
Php 102: Out with the Bad, In with the GoodPhp 102: Out with the Bad, In with the Good
Php 102: Out with the Bad, In with the Good
Jeremy Kendall3.4K views
Leveraging the Power of Graph Databases in PHP by Jeremy Kendall
Leveraging the Power of Graph Databases in PHPLeveraging the Power of Graph Databases in PHP
Leveraging the Power of Graph Databases in PHP
Jeremy Kendall890 views
(Ab)Using the MetaCPAN API for Fun and Profit by Olaf Alders
(Ab)Using the MetaCPAN API for Fun and Profit(Ab)Using the MetaCPAN API for Fun and Profit
(Ab)Using the MetaCPAN API for Fun and Profit
Olaf Alders2.3K views
Leveraging the Power of Graph Databases in PHP by Jeremy Kendall
Leveraging the Power of Graph Databases in PHPLeveraging the Power of Graph Databases in PHP
Leveraging the Power of Graph Databases in PHP
Jeremy Kendall1.1K views
Code obfuscation, php shells & more by Mattias Geniar
Code obfuscation, php shells & moreCode obfuscation, php shells & more
Code obfuscation, php shells & more
Mattias Geniar11.2K views
Building Next-Generation Web APIs with JSON-LD and Hydra by Markus Lanthaler
Building Next-Generation Web APIs with JSON-LD and HydraBuilding Next-Generation Web APIs with JSON-LD and Hydra
Building Next-Generation Web APIs with JSON-LD and Hydra
Markus Lanthaler42K views
WordPressでIoTをはじめよう by Yuriko IKEDA
WordPressでIoTをはじめようWordPressでIoTをはじめよう
WordPressでIoTをはじめよう
Yuriko IKEDA703 views
Date difference[1] by shafiullas
Date difference[1]Date difference[1]
Date difference[1]
shafiullas844 views

Similar to Web Development with CoffeeScript and Sass

AnkaraJUG Kasım 2012 - PrimeFaces by
AnkaraJUG Kasım 2012 - PrimeFacesAnkaraJUG Kasım 2012 - PrimeFaces
AnkaraJUG Kasım 2012 - PrimeFacesAnkara JUG
1.8K views60 slides
Primefaces Confess 2012 by
Primefaces Confess 2012Primefaces Confess 2012
Primefaces Confess 2012cagataycivici
2.6K views56 slides
Building Go Web Apps by
Building Go Web AppsBuilding Go Web Apps
Building Go Web AppsMark
2.8K views47 slides
Introduction to Facebook Graph API and OAuth 2 by
Introduction to Facebook Graph API and OAuth 2Introduction to Facebook Graph API and OAuth 2
Introduction to Facebook Graph API and OAuth 2Thai Pangsakulyanont
5.8K views49 slides
Blog Hacks 2011 by
Blog Hacks 2011Blog Hacks 2011
Blog Hacks 2011Yusuke Wada
2.7K views43 slides
YAP / Open Mail Overview by
YAP / Open Mail OverviewYAP / Open Mail Overview
YAP / Open Mail OverviewJonathan LeBlanc
633 views39 slides

Similar to Web Development with CoffeeScript and Sass(20)

AnkaraJUG Kasım 2012 - PrimeFaces by Ankara JUG
AnkaraJUG Kasım 2012 - PrimeFacesAnkaraJUG Kasım 2012 - PrimeFaces
AnkaraJUG Kasım 2012 - PrimeFaces
Ankara JUG1.8K views
Primefaces Confess 2012 by cagataycivici
Primefaces Confess 2012Primefaces Confess 2012
Primefaces Confess 2012
cagataycivici2.6K views
Building Go Web Apps by Mark
Building Go Web AppsBuilding Go Web Apps
Building Go Web Apps
Mark 2.8K views
Blog Hacks 2011 by Yusuke Wada
Blog Hacks 2011Blog Hacks 2011
Blog Hacks 2011
Yusuke Wada2.7K views
Great Developers Steal by Ben Scofield
Great Developers StealGreat Developers Steal
Great Developers Steal
Ben Scofield1.7K views
Testing Client-side Code with Jasmine and CoffeeScript by Brian Hogan
Testing Client-side Code with Jasmine and CoffeeScriptTesting Client-side Code with Jasmine and CoffeeScript
Testing Client-side Code with Jasmine and CoffeeScript
Brian Hogan4.9K views
Data Visualisations In IavaScript by annashipman
Data Visualisations In IavaScriptData Visualisations In IavaScript
Data Visualisations In IavaScript
annashipman1.1K views
Os Pruett by oscon2007
Os PruettOs Pruett
Os Pruett
oscon20071.1K views
Cross Domain Web
Mashups with JQuery and Google App Engine by Andy McKay
Cross Domain Web
Mashups with JQuery and Google App EngineCross Domain Web
Mashups with JQuery and Google App Engine
Cross Domain Web
Mashups with JQuery and Google App Engine
Andy McKay3.7K views
HappyKardashian.com for #FVCP by Eric Michalsen
HappyKardashian.com for #FVCPHappyKardashian.com for #FVCP
HappyKardashian.com for #FVCP
Eric Michalsen508 views
Cheap frontend tricks by ambiescent
Cheap frontend tricksCheap frontend tricks
Cheap frontend tricks
ambiescent474 views

More from Brian Hogan

Creating and Deploying Static Sites with Hugo by
Creating and Deploying Static Sites with HugoCreating and Deploying Static Sites with Hugo
Creating and Deploying Static Sites with HugoBrian Hogan
1.2K views65 slides
Automating the Cloud with Terraform, and Ansible by
Automating the Cloud with Terraform, and AnsibleAutomating the Cloud with Terraform, and Ansible
Automating the Cloud with Terraform, and AnsibleBrian Hogan
1.8K views80 slides
Create Development and Production Environments with Vagrant by
Create Development and Production Environments with VagrantCreate Development and Production Environments with Vagrant
Create Development and Production Environments with VagrantBrian Hogan
3.5K views43 slides
Docker by
DockerDocker
DockerBrian Hogan
1.2K views86 slides
Getting Started Contributing To Open Source by
Getting Started Contributing To Open SourceGetting Started Contributing To Open Source
Getting Started Contributing To Open SourceBrian Hogan
867 views34 slides
Rethink Frontend Development With Elm by
Rethink Frontend Development With ElmRethink Frontend Development With Elm
Rethink Frontend Development With ElmBrian Hogan
4.3K views64 slides

More from Brian Hogan(20)

Creating and Deploying Static Sites with Hugo by Brian Hogan
Creating and Deploying Static Sites with HugoCreating and Deploying Static Sites with Hugo
Creating and Deploying Static Sites with Hugo
Brian Hogan1.2K views
Automating the Cloud with Terraform, and Ansible by Brian Hogan
Automating the Cloud with Terraform, and AnsibleAutomating the Cloud with Terraform, and Ansible
Automating the Cloud with Terraform, and Ansible
Brian Hogan1.8K views
Create Development and Production Environments with Vagrant by Brian Hogan
Create Development and Production Environments with VagrantCreate Development and Production Environments with Vagrant
Create Development and Production Environments with Vagrant
Brian Hogan3.5K views
Getting Started Contributing To Open Source by Brian Hogan
Getting Started Contributing To Open SourceGetting Started Contributing To Open Source
Getting Started Contributing To Open Source
Brian Hogan867 views
Rethink Frontend Development With Elm by Brian Hogan
Rethink Frontend Development With ElmRethink Frontend Development With Elm
Rethink Frontend Development With Elm
Brian Hogan4.3K views
FUD-Free Accessibility for Web Developers - Also, Cake. by Brian Hogan
FUD-Free Accessibility for Web Developers - Also, Cake.FUD-Free Accessibility for Web Developers - Also, Cake.
FUD-Free Accessibility for Web Developers - Also, Cake.
Brian Hogan3.2K views
Responsive Web Design by Brian Hogan
Responsive Web DesignResponsive Web Design
Responsive Web Design
Brian Hogan1.3K views
Building A Gem From Scratch by Brian Hogan
Building A Gem From ScratchBuilding A Gem From Scratch
Building A Gem From Scratch
Brian Hogan1.4K views
Intro To Advanced Ruby by Brian Hogan
Intro To Advanced RubyIntro To Advanced Ruby
Intro To Advanced Ruby
Brian Hogan2.5K views
Turning Passion Into Words by Brian Hogan
Turning Passion Into WordsTurning Passion Into Words
Turning Passion Into Words
Brian Hogan1.1K views
HTML5 and CSS3 Today by Brian Hogan
HTML5 and CSS3 TodayHTML5 and CSS3 Today
HTML5 and CSS3 Today
Brian Hogan2.2K views
Web Development With Ruby - From Simple To Complex by Brian Hogan
Web Development With Ruby - From Simple To ComplexWeb Development With Ruby - From Simple To Complex
Web Development With Ruby - From Simple To Complex
Brian Hogan4.8K views
Stop Reinventing The Wheel - The Ruby Standard Library by Brian Hogan
Stop Reinventing The Wheel - The Ruby Standard LibraryStop Reinventing The Wheel - The Ruby Standard Library
Stop Reinventing The Wheel - The Ruby Standard Library
Brian Hogan9.8K views
Intro to Ruby by Brian Hogan
Intro to RubyIntro to Ruby
Intro to Ruby
Brian Hogan1.7K views
Intro to Ruby - Twin Cities Code Camp 7 by Brian Hogan
Intro to Ruby - Twin Cities Code Camp 7Intro to Ruby - Twin Cities Code Camp 7
Intro to Ruby - Twin Cities Code Camp 7
Brian Hogan2.2K views
Make GUI Apps with Shoes by Brian Hogan
Make GUI Apps with ShoesMake GUI Apps with Shoes
Make GUI Apps with Shoes
Brian Hogan10.4K views
Story-driven Testing by Brian Hogan
Story-driven TestingStory-driven Testing
Story-driven Testing
Brian Hogan1.2K views
Learning To Walk In Shoes by Brian Hogan
Learning To Walk In ShoesLearning To Walk In Shoes
Learning To Walk In Shoes
Brian Hogan1.4K views

Recently uploaded

Digital Personal Data Protection (DPDP) Practical Approach For CISOs by
Digital Personal Data Protection (DPDP) Practical Approach For CISOsDigital Personal Data Protection (DPDP) Practical Approach For CISOs
Digital Personal Data Protection (DPDP) Practical Approach For CISOsPriyanka Aash
171 views59 slides
MVP and prioritization.pdf by
MVP and prioritization.pdfMVP and prioritization.pdf
MVP and prioritization.pdfrahuldharwal141
40 views8 slides
"Running students' code in isolation. The hard way", Yurii Holiuk by
"Running students' code in isolation. The hard way", Yurii Holiuk "Running students' code in isolation. The hard way", Yurii Holiuk
"Running students' code in isolation. The hard way", Yurii Holiuk Fwdays
38 views34 slides
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or... by
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...ShapeBlue
209 views20 slides
Business Analyst Series 2023 - Week 4 Session 8 by
Business Analyst Series 2023 -  Week 4 Session 8Business Analyst Series 2023 -  Week 4 Session 8
Business Analyst Series 2023 - Week 4 Session 8DianaGray10
180 views13 slides
PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」 by
PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」
PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」PC Cluster Consortium
29 views68 slides

Recently uploaded(20)

Digital Personal Data Protection (DPDP) Practical Approach For CISOs by Priyanka Aash
Digital Personal Data Protection (DPDP) Practical Approach For CISOsDigital Personal Data Protection (DPDP) Practical Approach For CISOs
Digital Personal Data Protection (DPDP) Practical Approach For CISOs
Priyanka Aash171 views
"Running students' code in isolation. The hard way", Yurii Holiuk by Fwdays
"Running students' code in isolation. The hard way", Yurii Holiuk "Running students' code in isolation. The hard way", Yurii Holiuk
"Running students' code in isolation. The hard way", Yurii Holiuk
Fwdays38 views
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or... by ShapeBlue
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
ShapeBlue209 views
Business Analyst Series 2023 - Week 4 Session 8 by DianaGray10
Business Analyst Series 2023 -  Week 4 Session 8Business Analyst Series 2023 -  Week 4 Session 8
Business Analyst Series 2023 - Week 4 Session 8
DianaGray10180 views
PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」 by PC Cluster Consortium
PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」
PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」
Optimizing Communication to Optimize Human Behavior - LCBM by Yaman Kumar
Optimizing Communication to Optimize Human Behavior - LCBMOptimizing Communication to Optimize Human Behavior - LCBM
Optimizing Communication to Optimize Human Behavior - LCBM
Yaman Kumar39 views
The Power of Heat Decarbonisation Plans in the Built Environment by IES VE
The Power of Heat Decarbonisation Plans in the Built EnvironmentThe Power of Heat Decarbonisation Plans in the Built Environment
The Power of Heat Decarbonisation Plans in the Built Environment
IES VE85 views
Future of AR - Facebook Presentation by Rob McCarty
Future of AR - Facebook PresentationFuture of AR - Facebook Presentation
Future of AR - Facebook Presentation
Rob McCarty66 views
The Coming AI Tsunami.pptx by johnhandby
The Coming AI Tsunami.pptxThe Coming AI Tsunami.pptx
The Coming AI Tsunami.pptx
johnhandby14 views
Transcript: Redefining the book supply chain: A glimpse into the future - Tec... by BookNet Canada
Transcript: Redefining the book supply chain: A glimpse into the future - Tec...Transcript: Redefining the book supply chain: A glimpse into the future - Tec...
Transcript: Redefining the book supply chain: A glimpse into the future - Tec...
BookNet Canada43 views
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De... by Moses Kemibaro
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Moses Kemibaro38 views
AI + Memoori = AIM by Memoori
AI + Memoori = AIMAI + Memoori = AIM
AI + Memoori = AIM
Memoori15 views
LLMs in Production: Tooling, Process, and Team Structure by Aggregage
LLMs in Production: Tooling, Process, and Team StructureLLMs in Production: Tooling, Process, and Team Structure
LLMs in Production: Tooling, Process, and Team Structure
Aggregage65 views
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And... by ShapeBlue
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
ShapeBlue120 views
What is Authentication Active Directory_.pptx by HeenaMehta35
What is Authentication Active Directory_.pptxWhat is Authentication Active Directory_.pptx
What is Authentication Active Directory_.pptx
HeenaMehta3515 views

Web Development with CoffeeScript and Sass

  • 1. Web Development with Sass and CoffeeScript Brian P. Hogan Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 2. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 3. What about you? Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 4. Web pages run on CSS and JavaScript Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 5. CSS feels limited and repetitive Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 6. and many people don’t really understand JavaScript Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 7. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 8. We need to use better tools to build modern web apps. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 9. CoffeeScript lets us write complex JS with simpler syntax. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 10. Sass gives us extensions to CSS. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 11. Sass + CoffeeScript + automated workflow Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 12. CoffeeScript Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 13. It’s more of a new syntax than a new language. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 14. Some jQuery $(function() { $("a#get").click(function(e) { .get("/ajax/get", {name: "John",time: "2pm"}, function(data) { $("#result").html(data); } ); }); }); Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 15. in CoffeeScript $ -> $("a#get").click (e) -> $.get "/ajax/get", {name: "John", time: "2pm"}, (data) -> $("#result").html(data) Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 16. CoffeeScript borrows from Python and Ruby syntax. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 17. CoffeeScript uses significant whitespace for scope. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 18. CoffeeScript compiles to regular, plain old JavaScript. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 19. Declaring variables and objects var box, colors, firstName, lastName; firstName = "Homer" firstName = "Homer"; lastName = "Simpson" lastName = "Simpson"; colors = ["Green", "Blue", "Red"] colors = ["Green", "Blue", "Red"]; box = box = { height: 40 height: 40, width: 60 width: 60, color: red color: red }; Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 20. JavaScript functions // function declaration. Visible anywhere (hoisting) (function hello(name){ alert("Hello " + name + "!"); } // function expression, visible to the scope of the var var hello = function(name){ alert("Hello " + name + "!"); } Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 21. Function declaration in CoffeeScript hello -> alert "Hello" hello (name) -> alert "Hello #{name}" -> (thin arrow) Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 22. CoffeeScript uses function expressions. hello (name) -> alert "Hello #{name}!" var hello = function(name){ alert("Hello " + name + "!"); } #{} interpolates strings. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 23. New syntax means new features. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 24. a jQuery example $(function() { var displayError, displaySuccess, url; $("form").submit(function(event) {}); event.preventDefault(); url = $(this).attr("href"); $.ajax({ url: url + ".js", success: function(data, status, xhr) { displaySuccess($("#form")); }, error: function(xhr, status, error) { displayError(error); } }); displaySuccess = function(form) { var element; element = $("<p>Thanks for signing up!").addClass("success"); element.insertAfter(form); form.hide(); }; displayError = function(error) { $("#notice").attr("html", error); }; }); Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 25. jQuery $(function(){}) $ -> $("form").submit (event) -> event.preventDefault() url = $(this).attr "href" $.ajax url: url + ".js" success: (data, status, xhr) -> displaySuccess($("form")) error: (xhr, status, error) -> displayError error displaySuccess = (form) -> element = $("<p>Thanks for signing up!").addClass("success") element.insertAfter form form.hide() displayError = (error) -> $("#notice").attr "html", error Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 26. jQuery event handler $ -> $("form").submit (event) -> event.preventDefault() url = $(this).attr "href" $.ajax url: url + ".js" success: (data, status, xhr) -> displaySuccess($("form")) error: (xhr, status, error) -> displayError error displaySuccess = (form) -> element = $("<p>Thanks for signing up!").addClass("success") element.insertAfter form form.hide() displayError = (error) -> $("#notice").attr "html", error Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 27. jQuery $.ajax $ -> $("form").submit (event) -> event.preventDefault() url = $(this).attr "href" $.ajax url: url + ".js" success: (data, status, xhr) -> displaySuccess($("form")) error: (xhr, status, error) -> displayError error displaySuccess = (form) -> element = $("<p>Thanks for signing up!").addClass("success") element.insertAfter form form.hide() displayError = (error) -> $("#notice").attr "html", error Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 28. success and error callbacks $ -> $("form").submit (event) -> event.preventDefault() url = $(this).attr "href" $.ajax url: url + ".js" success: (data, status, xhr) -> displaySuccess($("form")) error: (xhr, status, error) -> displayError error displaySuccess = (form) -> element = $("<p>Thanks for signing up!").addClass("success") element.insertAfter form form.hide() displayError = (error) -> $("#notice").attr "html", error Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 29. -> leaves (this) scope alone. $ -> $("form").submit (event) -> event.preventDefault() url = $(this).attr "href" $.ajax url: url + ".js" success: (data, status, xhr) -> displaySuccess($("form")) error: (xhr, status, error) -> displayError error displaySuccess = (form) -> element = $("<p>Thanks for signing up!").addClass("success") element.insertAfter form form.hide() displayError = (error) -> $("#notice").attr "html", error Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 30. => Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 31. => binds this to the function body $ -> $("form").submit (event) -> event.preventDefault() url = $(this).attr "href" $.ajax url: url + ".js" success: (data, status, xhr) => displaySuccess($(this)) error: (xhr, status, error) -> displayError error displaySuccess = (form) -> element = $("<p>Thanks for signing up!").addClass("success") element.insertAfter form form.hide() displayError = (error) -> $("#notice").attr "html", error Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 32. Comprehensions Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 33. Simple iteration alert color for color in ["red", "green", "blue"] var colors = ["red", "green", "blue"]; for (i = 0, length = colors.length; i < length; i++) { var color = colors[i]; alert(color); } Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 34. “for in” people = [ {name: "Homer", age: 42} {name: "Bart", age: 10} ] for person in people alert "#{person.name} is #{person.age} years old" Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 35. That’s just the beginning. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 36. Existential operator (?) total ?= 0 if (typeof total !== "undefined" && total !== null) { total; } else { total = 0; }; Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 37. Object-oriented JavaScript Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 38. Classes var Person, p; Person = (function() { function Person(options) { this.firstname = options.firstname; this.lastname = options.lastname; this.age = options.age; } Person.prototype.fullname = function() { return "" + this.firstname + " " + this.lastname; }; return Person; })(); p = new Person({ firstname: "Brian", lastname: "Hogan" }); alert(p.fullname()); Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 39. Classes var Person, p; Person = (function() { function Person(options) { this.firstname = options.firstname; this.lastname = options.lastname; class Person this.age = options.age; constructor: (options) -> } @firstname = options.firstname Person.prototype.fullname = function() { @lastname = options.lastname return "" + this.firstname + " " + this.lastname; @age = options.age }; return Person; fullname: -> })(); "#{@firstname} #{@lastname}" p = new Person({ firstname: "Brian", lastname:="Hogan" p new Person }); alert p.fullname() alert(p.fullname()); Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 40. We can even extend classes! class basicWindow constructor: -> class mainWindow extends basicWindow @window = Ti.UI.createWindow({ constructor: -> backgroundColor: "#F5F5ED" super }) @window.backgroundColor = "#fff" open: -> @window.open() Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 41. How do we use it? In the web browser itself via Node.js With Ruby, via Guard Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 42. In the browser? <script language="text/coffeescript"> people = [ {name: "Homer", age: 42} {name: "Bart", age: 10} ] for person in people do (person) -> alert "#{person.name} is #{person.age} years old" </script> <script src="coffee-script.js"></script> (this is slow.) Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 43. With Node.js Install Node.js Install npm npm install -g coffee-script coffee --compile --output js/ coffee/ coffee -o js/ -cw coffee/ Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 44. Ruby and Guard Install Ruby gem install guard-coffeescript In our project guard init coffeescript guard Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 45. Guard watches input folders for changes and writes output files. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 46. Guard works with Sass too. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 47. Sass Syntactically Awesome Stylesheets Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 48. Sass gives CSS everything programmers want. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 49. CSS .sidebar { color: #000; border: 1px solid #000; } .sidebar p { margin-bottom: 20px; } .sidebar ul { margin-bottom: 10px; } .sidebar h1 { margin-bottom: 0; } .main{ color: #000; } Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 50. CSS .sidebar { color: #000; border: 1px solid #000; } .sidebar p { margin-bottom: 20px; } .sidebar ul { margin-bottom: 10px; } .sidebar h1 { margin-bottom: 0; } .main{ color: #000; } Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 51. CSS .sidebar { color: #000; border: 1px solid #000; } .sidebar p { margin-bottom: 20px; } .sidebar ul { margin-bottom: 10px; } .sidebar h1 { margin-bottom: 0; } .main{ color: #000; } Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 52. Sass to the rescue! Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 53. Variables! $measure: 20px $color: #ce4dd6 .sidebar background-olor: $color border: 1px solid lighten($color, 20%) p margin-bottom: $measure ul margin-bottom: $measure / 2 h1 margin-bottom: 0 Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 54. Variables and helper functions! $measure: 20px $color: #ce4dd6 .sidebar background-olor: $color border: 1px solid lighten($color, 20%) p margin-bottom: $measure ul margin-bottom: $measure / 2 h1 margin-bottom: 0 Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 55. Scope with nesting $measure: 20px $color: #ce4dd6 .sidebar background-olor: $color border: 1px solid lighten($color, 20%) p margin-bottom: $measure ul margin-bottom: $measure / 2 h1 margin-bottom: 0 Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 56. Indented Sass SCSS $measure: 20px $measure: 20px; $color: #000 $color: #000; .sidebar .sidebar{ color: $color color: $color; border: 1px solid $color border: 1px solid $color; p p{ margin-bottom: $measure margin-bottom: $measure; } ul margin-bottom: $measure / 2 ul{ margin-bottom: $measure / 2; h1 } margin-bottom: 0 h1{ margin-bottom: 0; } } Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 57. But wait... there’s more! Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 58. Modularization _mixins.scss @import "mixins"; @import "reset"; @import "base"; _reset.scss @import "fonts"; _base.scss _fonts.scss Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 59. Reusable Functions (mixins) blockquote { @mixin rounded($radius){ width: 225px; border-radius: $radius; padding: 15px 30px; -moz-border-radius: $radius; margin: 0; -webkit-border-radius: $radius; position: relative; } background: #faa; @include rounded(20px); } .button { cursor: pointer; color: #000; text-decoration: none; @include rounded(12px); } Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 60. Mixins + Interation + Variables @mixin shadow($x, $y, $offset, $color) @each $prefix in "", -moz-, -webkit-, -o-, -khtml- #{$prefix}box-shadow: $x $y $offset $color Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 61. Mixins + Interation + Variables @mixin shadow($x, $y, $offset, $color) @each $prefix in "", -moz-, -webkit-, -o-, -khtml- #{$prefix}box-shadow: $x $y $offset $color box-shadow: 5px 5px 5px #dddddd; -moz-box-shadow: 5px 5px 5px #dddddd; -webkit-box-shadow: 5px 5px 5px #dddddd; -o-box-shadow: 5px 5px 5px #dddddd; -khtml-box-shadow: 5px 5px 5px #dddddd; } Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 62. Create well-organized folders and libraries of stylesheets. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 63. or use Compass. http://compass-style.org/ Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 64. Compass has helpers @import 'compass' @include box-shadow(#ddd 5px 5px 5px) box-shadow: 5px 5px 5px #dddddd; -moz-box-shadow: 5px 5px 5px #dddddd; -webkit-box-shadow: 5px 5px 5px #dddddd; -o-box-shadow: 5px 5px 5px #dddddd;} Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 65. How do we use it? via Sass via a supported IDE With Ruby, via Guard Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 66. with Sass Install Ruby $ gem install sass $ sass --watch sass:stylesheets Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 67. Ruby and Guard Install Ruby gem install guard-sass In our project guard init sass guard Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 68. Using Sass and CoffeeScript together Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 69. Mindscape Web Workbench http://www.mindscapehq.com/products/web-workbench Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 70. Ruby and Guard Install Ruby gem install guard-sass guard- coffeescript In our project guard init sass guard init coffeescript guard Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 71. Let’s talk deployment Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 72. Rails 3.1 and Capistrano Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 73. Asset Packaging Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 74. So instead of this... <link rel="stylesheet" href="stylesheets/layout.css"> <link rel="stylesheet" href="stylesheets/style.css"> <script src="javascripts/jquery-1.7.0.min.js"></script> <script src="javascripts/app.js"></script> Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 75. ...let’s do this: <link rel="stylesheet" href="assets/app.css"> <script src="assets/app.js"></script> Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 76. Ruby + Guard + Jammit Install Ruby $ gem install guard-jammit Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 77. Sass, CoffeeScript, Jammit watch Sass files for changes Place output css in tmp/ folder watch CoffeeScript files for changes Place output js in tmp/ folder Use Jammit to combine them. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 78. config/assets.yml stylesheets: app: - tmp/app.css - tmp/style.css javascripts: app: - javascripts/jquery-1.6.4.js - tmp/app.js Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 79. Guardfile guard "coffeescript", :input => "coffeescripts", :output => "tmp" guard "sass", :input => "sass", :output => "tmp" guard "jammit" do watch(/^javascripts/(.*).js/) watch(/^stylesheets/(.*).css/) watch(/^tmp/(.*).js/) watch(/^tmp/(.*).css/) end Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 80. Jammit places files in public/assets <link rel="stylesheet" href="assets/app.css"> <script src="assets/app.js"></script> Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 81. Deploy with Rake SERVER = "yourhost.com" USERNAME = "yourusername" REMOTE_FOLDER = "/home/#{USERNAME}/yourhost.com" REMOTE_FOLDER = 22 require 'net/scp' desc "compile CSS, js files" task :compile do require 'guard' Guard.setup Guard::Dsl.evaluate_guardfile Guard::guards.each{|guard| guard.run_all} end desc "Deploy web site" task :deploy => :compile do Net::SSH.start(SERVER, USERNAME, {:port => PORT} ) do |ssh| ssh.sftp.rmdir File.join(REMOTE_FOLDER, "public") ssh.scp.upload! "public", REMOTE_FOLDER, :recursive => true end end Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 82. qedproject https://github.com/napcs/qedproject Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 83. qedproject Install Ruby gem install qedproject qedproject myapp -c -s -a -l jquery creates app with Sass, CoffeeScript, Asset packaging, and jQuery Sets up Guard and a simple Rake file for deployment Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 84. Demo Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 85. Short syntax Nested Selectors Catch errors at compile time Variables List Mixins Comprehensions Composition Classes Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 86. With asset packaging and automated deployment... Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 87. ...CoffeeScript and Sass make developers happy. Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682
  • 88. Questions? http://pragprog.com/book/wbdev/web- development-recipes Brian P. Hogan twitter: @bphogan www.webdevelopmentrecipes.com Rate this talk at http://spkr8.com/t/8682

Editor's Notes

  1. \n
  2. \n
  3. \n
  4. Everyone who&amp;#x2019;s done something on the web knows something about these languages.\n
  5. Despite the new properties from CSS3, the language itself lacks basic features that programmers expect.\n
  6. \n
  7. Instead many developers go out to StackOverflow and swipe some code, slap it in the project, and cause all sorts of trouble for previous developers.\n
  8. The solution is for us to use better tools and workflows to build our applications.\n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. It borrows the indentation of Python and some of the language features of both Python and Ruby.\n
  17. \n
  18. \n
  19. Variable declarations are all done by omitting the var keyword. CoffeeScript automatically adds this so we don&amp;#x2019;t accidentally get a variable in the wrong scope.\n
  20. We can define functions many ways in Javascript. These are the two most popular - we can use &amp;#x201C;function declarations&amp;#x201D; or we can use function expressions. \n
  21. The thin arrow defines our functions. If we want to take in parameters, we list them before the fat arrow. Everything within the function is indented. \n
  22. If we have no params for our function, we simply use the dash rocket. If we do want to have params come in, we can specify them before the dash rocket in parentheses.\n
  23. CoffeeScript always turns out regular JavaScript, but some of that JavaScript can be really, really hard to follow, so people don&amp;#x2019;t write it very often.\n
  24. Let&amp;#x2019;s take a look at this jquery example. We have a form submission, and we have two events attached to the ajax request we fire during the form submission. It&amp;#x2019;s a lot of callbacks and it&amp;#x2019;s a bit hard to follow.\n
  25. We can replace the documentReady jQuery method with a simple dollar sign and a dash rocket\n
  26. Then we can locate an element just like we would with jQuery, but we declare the click handler with the dash rocket again.\n
  27. jQuery&amp;#x2019;s ajax method takes a settings object. We can define the object literal using CoffeeScript&amp;#x2019;s syntax\n
  28. Then since CoffeeScript uses the function expression form of function declaration, we declare the success and error callbacks using the same dashrocket feature.\n
  29. the &amp;#x2018;this&amp;#x2019; keyword references the current context we&amp;#x2019;re in. In the submit handler, (this) refers to the element that received the click. But in the success handler, we don&amp;#x2019;t have access to that element anymore - &amp;#x2018;this&amp;#x2019; has changed so we have to use jquery again to grab the element.\n
  30. This is the fat arrow. It works like the thin arrow except for one very important feature - it passes the scope of this into the function\n
  31. Now &amp;#x201C;this&amp;#x201D; is bound and handled for us. We do a lot of hacks to avoid this in JavaScript. CoffeeScript gives us a language feature to solve that.\n
  32. We can use CoffeeScript syntax to loop over collections much more easily.\n
  33. Like in Ruby, we can iterate over arrays easily. This is equivalent to the typical &amp;#x201C;for&amp;#x201D; loop we are all used to writing\n
  34. We can even iterate over collections of objects this way. This writes 100% cross-browser javascript code. We often bring in things like Underscore.js or jquery just for things like this, but with CoffeeScript we&amp;#x2019;re not forcing our users to download those libraries just so we can have some convenience.\n
  35. CoffeeScript has some amazing syntax that saves us some time.\n
  36. We can use this to initialize a variable if it&amp;#x2019;s not already defined.\n
  37. JavaScript isn&amp;#x2019;t really an object-oriented language, even though programmers pretend it is. \n
  38. We can have classes in JavaScript. But to do that, we&amp;#x2019;d need to write monster code like this.\n
  39. We can replace that with this CoffeeScript code.... which is a LOT nicer.\n
  40. \n
  41. but how do we actually *use* it?\n
  42. We can use it in the browser. CoffeeScript is actually written in CoffeeScript, thus the interpreter is a JS file.\n
  43. We can also install Node.JS and NPM to get the &amp;#x2018;coffee&amp;#x2019; command on our machines.\n
  44. Or we can use Guard and Ruby. \n
  45. Guard is a simple commandline utility that watches folders for changes and executes tasks. It works on Windows and OSX and many Linux flavors.\n
  46. More on Guard in a bit, but first, let&amp;#x2019;s talk about Sass\n
  47. Sass is how I write my stylesheets\n
  48. As a programmer, I miss certain things in CSS, like variables and functions\n
  49. Look at how much CSS makes us repeat ourselves. We have to repeat this sidebar selector three times just so we can specify that we want to target elements within the sidebar scope.\n
  50. These repeated color codes make it hard for us to refactor styles later.\n
  51. And look at these measurements. These should be computed or something.\n
  52. \n
  53. We can declare variables and even work with them. Notice that the 20px value can be divided, while still retaining its suffix?\n
  54. We can also work with colors. We can use functions to alter the colors.\n
  55. And we can nest selectors so we can avoid repeating ourselves. This makes scoping so much more apparent.\n
  56. There&amp;#x2019;s a different syntax, if the whitespace indentation stuff isn&amp;#x2019;t your thing.\n
  57. The variables and nesting go a long way to making our CSS less repetitive, but we can go even farther.\n
  58. We can break up our styles into smaller files that we can compose together, and then build one main stylesheet out of those parts.\n
  59. We can create mixins, or reusable functions to build up a library of common, useful features for our stylesheets.\n
  60. And we can make them even more powerful, by combining mixins and iteration with our variables.\n
  61. This is a great way to reduce duplication in our code.\n
  62. We can then create some pretty amazing collections of reusable code.\n
  63. But we can also use Compass, a nice framework for working with Sass\n
  64. So instead, we just use Compass&amp;#x2019; helpers instead of building our own. And there are a lot of them.\n
  65. but how do we actually *use* it?\n
  66. \n
  67. Or we can use Guard and Ruby. \n
  68. So now you&amp;#x2019;re all excited about these things.\n
  69. Support in Visual Studio 2010 for Sass and CoffeeScript\n
  70. Or we can use Guard and Ruby. Guard can watch for CoffeeScript and Sass files at the same time.\n
  71. Deployment should be automated. The days of moving files by FTP should be over, so there should be some script or process that pushes apps to production.\n
  72. Basically done for you thanks to the asset pipeline. Deployment is handled by Capistrano tasks.\n
  73. We&amp;#x2019;ve got all these stylesheets and JavaScript files, but our browser shouldn&amp;#x2019;t have to make people download all of these files.\n
  74. This makes the end user download multiple files which means additional HTTP requests.\n
  75. Let&amp;#x2019;s combine our css and JS files so we eliminate the need for those extra requests.\n
  76. To do this, we can use Ruby, Guard, and Jammit.\n
  77. We can put Guard to work along with Jammit, an asset packager which will combine our JS and CSS files into single files, with compression.\n
  78. So we list our stylesheets that we want to combine, and we do the same with JS. We tell Jammit to look in the tmp folder, which is where Sass and CoffeeScript are placing the generated JS files. Our web page will reference these in the public/ folder\n
  79. This is a Guardfile that specifies the folders we want to watch. \n
  80. We just need to make sure our web page looks in the assets/ folder for the files.\n
  81. We then script the deployment. We could use any scripting language, really, but by using Rake, which is written in Ruby, we can actually invoke Guard and tell it to force compilation of our assets. When we run our deploy task, our compile task runs first, thanks to the =&gt; dependency declaration.\n
  82. qedproject is a simple command-line utility written in Ruby for creating projects that let you work with sass and Coffeescript. It&amp;#x2019;s a work in progress but I use it when I&amp;#x2019;m trying to figure something out.\n
  83. \n
  84. \n
  85. To sum it up, here are the main benefits to both of these technologies\n
  86. \n
  87. I&amp;#x2019;ve stopped writing regular CSS, and I&amp;#x2019;m looking to stop writing regular JavaScript. There are too many productivity advantages.\n
  88. Thanks for coming.\n