JustMeme is a NativeScript-built iOS and Android app for creating memes and sharing them with your friends and family.
This app was built with the NativeScript CLI. Once you have the CLI installed, use the following commands to setup JustMeme:
$ git clone https://github.com/NativeScript/JustMeme.git
$ cd JustMeme
$ tns platform add ios
$ tns platform add android
JustMeme uses Babel to transpile the ES6-written source into ES5 that can run on JavaScriptCore and V8 in NativeScript. To setup a Gulp watcher to transpile your code, switch to the src directory and install the necessary dependencies from npm:
$ cd src
$ npm install
Next run Gulp to start the watcher:
$ gulp
From there you're good to run the app on your device of choice. For instance the following runs the app on an iOS emulator:
$ tns run ios --emulator
JustMeme also uses Gulp to automate JSHint for code linting. To run JSHint against the source files just run gulp jshint within the src directory:
$ gulp jshint