Skip to content

alicecodes/es2015_08292016

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to Introduction to ES2015!

Instructor

Eric Greene - http://t4d.io - LinkedIn

Schedule

Class:

  • Today: 9am to 5pm

Breaks:

  • Morning: 10:25am to 10:35am
  • Lunch: Noon to 1pm
  • Afternoon #1: 2:15pm to 2:25pm
  • Afternoon #2: 3:40pm to 3:50pm

Course Outline

  • ES2015 Introduction and Project Setup
  • Variable Declaration
  • Template Strings
  • Arrow Functions
  • Classes
  • Modules
  • Destructuring
  • Iterators
  • Generators
  • Spread and Rest Operators
  • Promises
  • Maps and Sets

Links

Instructor's Resources

Other Resources

Setup Instructions

This is a starter project for learning ES2015.

Application Setup

Step 1. Download Install Node.js version 6 or higher. Version 6 or higher MUST be installed. If you have an older Node.js version that you need to keep, then use something like NVM to manage multiple Node.js installations. To install Node.js click here.

Step 2. Download this repository from here. Extract the zip file to a working folder on your system.

Step 3. Open a new terminal window, change to the folder where you extracted the zip file. You should see a package.json file in the folder.

On Windows, the terminal is called "Node.js Command Prompt". This will command prompt will contain the proper paths for Node.js development. DO NOT RUN the Node.js program. Click the icon named "Node.js Command Prompt". For Mac users, the Mac terminal is all you need.

Step 4. From the terminal, run the following command:

$ npm i

It could take a few minutes for this command to complete. If you have connection issues due to a proxy server, please edit the .npmrc file per the instructions in that file. Then re-run the command above. Once the packages have been downloaded and installed the setup is complete.

NPM Scripts Command Reference

From a terminal, in the root project folder (where the package.json file exists), the following commands can be executed to perform various project development tasks.

  • npm run babel - run ES2015 code in the src folder through Babel, and produce output in the dist folder
  • npm run babel:w - do the same as the previous command, but also wait for new file changes, and run through Babel automatically

Useful Resources

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 79.8%
  • HTML 20.2%