A simple javascript TDD starter project with ES6 support

Test driven development is one of the best “tool” we have to produce reliable applications. This project is a starter template from which you can start developing your web based applications in a TDD ready environment using ECMAScript2015 features.

Visit the project website here esixstarter.

Quick start:

Before proceeding be sure to have a working installation of NodeJS and npm on your machine.

To start a new project clone this git repository:

git clone https://github.com/fradot/esixstarter.git

Or download it here.

Now from the command line navigate to the repository directory and install dependencies by typing this command on your terminal window:

npm install

Now you you can start developing by typing:

gulp

By default the gulp command will start a web server at http://localhost:8080.  Karma will execute your tests during development and you will be able to see the results in real time on your terminal.

 

Leave a comment