JavaScript in Node.js
Learn to use JavaScript in Node.js.
One important consequence of the architecture we have just analyzed is that the JavaScript we use in Node.js is somewhat different from the JavaScript we use in the browser.
The most obvious difference is that in Node.js we don’t have a
In this lesson, we’ll take a look at some key facts to keep in mind when using JavaScript in Node.js.
Run the latest JavaScript with confidence
One of the main pain points of using JavaScript in the browser is that our code will likely run on a variety of devices and browsers. Dealing with different browsers means dealing with JavaScript runtimes that may miss some of the newest features of the language or the web platform. Luckily, today this problem can be ...