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

JavaScript Node.js Basics 2017 Handling Errors in Node Handling Parsing Errors with try and catch

Aren't we just using vanilla Javascript?

This is Node.js Basics. Isn't Node.js a framework? We are not using any new methods. Please can someone help me understand? Any help is appreciated. Thanks! :)

1 Answer

Steven Parker
Steven Parker
229,732 Points

Node.js is a JavaScript engine component that allows scripts to run outside of a browser. It is particularly handy for server-side tasks, and has a few built-in extensions to take advantage of its location.

But Node.js primarily supports the conventional JavaScript language. You can always load frameworks in to use them, but Node.js itself is, as you say, essentially a "vanilla JavaScript" engine.

Thank you for clearing that up for me Steven. :)