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 trial

General Discussion

What are the core components online instant messaging? Such as Facebook IM?

Are there any resources that walk you through the process?

4 Answers

I would say learning AJAX is a good place to start. NodeJS and Javascript frameworks like AngularJS and EmberJS are also very cool tools that could suit pretty well to create that functionality. I'm not sure what Facebook uses for their specific case though.

I understand. So would there be a need for any PHP or MySQL? Thank you for your answer.

Yes, most likely. In order for me to send you a message (or even post this comment), the message needs to be sent off to a server, stored in database and sent back to the appropriate client (your computer). So you'll need to be able to write server-side code like PHP, and manipulate data in a database with something like SQL. Then again, you don't HAVE to use PHP or MySQL specifically. There are plenty of other options that have their own pros and cons.

Thank you for your response Nick.

no problem!