Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Generate Conf: The new era of JS

Jack Franklin
September 13, 2013

Generate Conf: The new era of JS

With all the new tools and techniques that have come forth in the last couple of years, the JS ecosystem has changed rapidly. Embrace it.

Jack Franklin

September 13, 2013
Tweet

More Decks by Jack Franklin

Other Decks in Technology

Transcript

  1. Why do you want to make that distinction? What benefit

    do you gain by arbitrarily dividing the entire web into two classes? Jeremy Keith, “By any other name”: http://adactio.com/journal/6246/
  2. We’re all building sites that people visit, do something, and

    leave. Differentiating websites vs. web apps is no good to anyone. Me, Port80 2013: https://speakerdeck.com/jackfranklin/port80-practical- javascripting
  3. A lot of people ignore new JavaScript tools, methods or

    approaches because those are just for “web apps.” Me again, Port80 2013: https://speakerdeck.com/jackfranklin/port80-practical- javascripting
  4. <script id=”template” type=”text/template”> <p>The book “<%= title %>” was written

    by <%= author %>.</p> </script> var content = $(“#template”).html(); var temp = _.template(content); var html = temp({ title: “My Book”, author: “Jack” }); templates (underscore)
  5. var html = $(“<p></p>”, { text: ‘The book “‘ +

    title + ‘“ was written by ‘ + author + ‘.’ }).html(); no templates
  6. Don’t turn off a native language and expect things to

    work. Todd Motto, http://www.webdeveloper2.com/2013/09/interview-1-todd-motto/