Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dex4er/angular-bootstrap-hello-world
Hello World: angular + bootstrap + grunt + karma-mocha-sinon-chai + webdriverio
https://github.com/dex4er/angular-bootstrap-hello-world
Last synced: 10 days ago
JSON representation
Hello World: angular + bootstrap + grunt + karma-mocha-sinon-chai + webdriverio
- Host: GitHub
- URL: https://github.com/dex4er/angular-bootstrap-hello-world
- Owner: dex4er
- Created: 2015-07-13T22:03:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-15T19:07:44.000Z (over 9 years ago)
- Last Synced: 2024-10-28T09:02:22.021Z (about 2 months ago)
- Language: JavaScript
- Size: 180 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is template for Angular+Bootstrap application with karma+mocha+chai spec
tests and webdriverio e2e tests.## Preparing node
```
$ cd
$ sudo apt-get install build-essential git
$ git clone https://github.com/creationix/nvm.git .nvm
$ . ~/.nvm/nvm.sh
$ nvm ls-remote
$ echo stable > ~/.nvmrc
$ nvm install
$ echo '{"private":true}' > ~/package.json
$ npm install --save npm
$ export PATH="node_modules/.bin:../node_modules/.bin:$HOME/node_modules/.bin:$PATH"
```## Peparing dev
```
$ cd
$ node install
$ bower install
```## List available tasks
```
$ gulp help
```## Running in browser and watch for changes (development)
```
$ gulp serve
```## Spec testing (single run)
```
$ gulp spec
```## End to end testing (single run)
```
$ gulp e2e
```## Copy files to destination folder (development)
```
$ gulp copy
```