Below are summary of getting started from several famous web/mobile framework
$ npm install -g cordova ionic
$ ionic start myApp tabs
$ cd myApp
$ ionic platform add ios
$ ionic build ios
$ ionic emulate ios
$ npm install -g strongloop
$ slc loopback
[?] Enter a directory name where to create the project: hello-world
[?] What's the name of your application? hello-world
$ cd hello-world
$ slc loopback:model
...
$ node .
Browse your REST API at http://0.0.0.0:3000/explorer
Web server listening at: http://0.0.0.0:3000/
$ npm install -g cordova
$ cordova create MyApp
$ cd MyApp
$ cordova platform add browser
$ cordova run browser
$ npm -g install sails
$ sails new testProject
$ cd testProject
$ sails lift
$ vagrant init hashicorp/precise32
$ vagrant up --provider virtualbox
to halt:
$ vagrant halt
to destroy:
$ vagrant destroy -f