Skip to content

sashakhad/ES6-Starter-Kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ES6-Starter-Kit

#####Instructions

  1. Fork this repo

  2. Clone repo onto your computer (git clone [url])

  3. Run npm install

  4. Start having fun!

#####Adding Modules If you would like to import and export modules into your code in this repo, you will also need to make sure that your those modules are compiled via the gulp build tool. You can do that by adding your new module to the "babel" task:

gulp.task("babel", function(){
  return gulp.src(["main.js", "module.js", "path/to/your/new/module.js"])
    .pipe(babel())
    .pipe(gulp.dest("dist"));

})

#####Resources http://www.es6fiddle.com/

https://google.github.io/traceur-compiler/demo/repl.html

About

exploring the new features of es6

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published