Book Image

ECMAScript Cookbook

By : Ross Harrison
Book Image

ECMAScript Cookbook

By: Ross Harrison

Overview of this book

ECMAScript Cookbook follows a modular approach with independent recipes covering different feature sets and specifications of ECMAScript to help you become an efficient programmer. This book starts off with organizing your JavaScript applications as well as delivering those applications to modem and legacy systems. You will get acquainted with features of ECMAScript 8 such as async, SharedArrayBuffers, and Atomic operations that enhance asynchronous and parallel operations. In addition to this, this book will introduce you to SharedArrayBuffers, which allow web workers to share data directly, and Atomic operations, which help coordinate behavior across the threads. You will also work with OOP and Collections, followed by new functions and methods on the built-in Object and Array types that make common operations more manageable and less error-prone. You will then see how to easily build more sophisticated and expressive program structures with classes and inheritance. In the end, we will cover Sets, Maps, and Symbols, which are the new types introduced in ECMAScript 6 to add new behaviors and allow you to create simple and powerful modules. By the end of the book, you will be able to produce more efficient, expressive, and simpler programs using the new features of ECMAScript. ?
Table of Contents (20 chapters)
Title Page
Copyright and Credits
Dedication
PacktPub.com
Contributors
Preface
Index

Installing Node.js with NVM: Windows


Subsequent recipes will assume that Node.js is installed. This recipe demonstrates how to install Node.js for Windows.

Getting ready

This recipe is meant for the Windows environment. See the previous recipe for macOS and Linux instructions.

You must also have git installed. You can download git from the following link:

https://git-scm.com/download/win.

How to do it...

  1. Visit the project release page:https://github.com/coreybutler/nvm-windows/releases.
  2. Download the latest nvm-setup.zip file.
  3. Extract the downloaded ZIP.
  4. Double-click nvm-setup.
  5. Go through the wizard to complete the installation.
  6. Open the Command Prompt.
  7. Confirm the installation by checking the version number of nvm:
> nvm version1.1.6 
  1. List all of the Node.js versions available for installation:
> nvm list available
  1. Install the latest LTS or stable version (at time of writing, version 8.9.4 is the latest LTS version):
> nvm install 8.9.46.11.0Downloading node.js version 8.9.4 (64-bit)...CompleteCreating...