Supercharge Your Toolchain: Haml, Sass, CoffeeScript, Git, and Heroku
Learn how to write faster markup with Haml, smarter CSS with Sass, and better JavaScript with CoffeeScript. We’ll touch on the benefits of a git repository and the ease of deploying to Heroku. Intended for anyone interested in more expedient tools.
<< “ hobgoblin” - foo << “ of little minds.” %p= foo - username = “Jay Gatsby” #greeting= “Welcome, #{username}!” HAML <p>A foolish consistency is the hobgoblin of little minds.</p> <div id=“greeting”>Welcome, Jay Gatsby!</div> HTML Run Ruby
• Easily convert existing projects • Similar to LESS • Cleanest, most minimal syntax • Great to use with new projects • Go all the way style.scss 㱻 style.sass
food = ['stuffing', 'turkey', 'pie']; for (var i=0; i < food.length; i++) { eat(food[i]); }; // stuffing nom nom nom // turkey nom nom nom // pie nom nom nom JavaScript