Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialGian Nicola Caggiano
11,898 PointsHow was it developed this website?
Hi! I was wandering around the web, when I saw this awesome website: http://www.thestlbrowns.com/
I'm curious to know what techniques and technologies have been used for development. Have you any idea?
Thanks :)
3 Answers
Raouf Tiliouine
15,192 PointsHi Gian,
I personally use a Chrome Web extension called "BuiltWith Technology Profiler" to find the technologies a specific website uses. In your case, it looks like the website isn't using flash, but instead uses HTML 5 and is heavily relying on Javascript for animations and such.
Hope that helps
EDIT -
It also looks like its using expressjs.
Gian Nicola Caggiano
11,898 PointsHi Raouf, thanks for the answer. I've installed that extension and the site was developed with express.js and node.js. My question is: why using these tools?
Raouf Tiliouine
15,192 PointsJavascript frameworks are getting more and more popular. One of the many reasons that's happening is because they are much faster in terms of performance than let's say php or Ruby on rails. Also, in your case, the website doesn't seem to be using a database, so javascript frameworks are even more appealing.
If you're wondering why they didn't just use plain old html and css, it's probably because there is still some level of interactivity (eg. contact form)