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

Evolution of a Web Application

Evolution of a Web Application

Presentation given at ScriptConf in Linz, Austria, 27 Jan 2017

Avatar for Raquel Vélez

Raquel Vélez

January 27, 2017
Tweet

More Decks by Raquel Vélez

Other Decks in Programming

Transcript

  1. @rockbot #scriptconf 7-day rolling 0 200,000 400,000 600,000 800,000 2014/1/6

    2015/1/5 2016/1/4 2017/1/2 Users New Users users on the website
  2. @rockbot #scriptconf function showProfile (req, res, showprofile) { // …

    req.model.end(function (er, m) { var td = { showprofile: showprofile , profile: req.model.profile , fields: showprofile.fields , title: showprofile.name , hiring: req.model.whoshiring , packages: req.model.packages , starred: req.model.starred } res.template('profile.ejs', td) }) }