Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dex4er/ionic-hello-world
Hello World: ionic + gulp + karma-mocha-sinon-chai + webdriverio
https://github.com/dex4er/ionic-hello-world
Last synced: 10 days ago
JSON representation
Hello World: ionic + gulp + karma-mocha-sinon-chai + webdriverio
- Host: GitHub
- URL: https://github.com/dex4er/ionic-hello-world
- Owner: dex4er
- Created: 2015-07-12T07:34:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-07T21:41:31.000Z (almost 9 years ago)
- Last Synced: 2024-10-28T09:02:05.620Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.94 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ionic Hello World
## Preparing node (Debian/Ubuntu)
```
$ 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 working directory
```
$ cd
$ npm install
$ bower install
```## List available tasks
```
$ gulp help
```## Run in browser and watch for changes (development)
```
$ gulp serve
```## Spec testing (single run)
```
$ gulp spec
```## End to end testing (single run, requires serve task)
```
$ gulp e2e
```## Build project (uncompressed)
```
$ gulp build:dev
```## Build project (compressed)
```
$ gulp build
```## Install Cordova plugins
```
$ gulp cordova:plugins:install
```## Install Cordova platforms
```
$ gulp cordova:platform:install
```## Regenerate Cordova resources
```
$ ionic resource
```## Run Cordova project
```
$ gulp cordova:run
```## Change version number for application
```
$ gulp bump --setversion=0.0.2
```## Upgrade libraries
```
$ ncu -ua
$ npm install
```## Upgrade assets
```
$ ncu -m bower -ua
$ npm install
```## Upgrade Cordova platform
```
$ gulp cordova:platform:update
```## Upgrade Cordova plugins
```
$ gulp cordova:plugins:upgrade
```