Skip to content

gios/nativescript-angular

 
 

Repository files navigation

Integrating NativeScript with Angular 2.

Running locally

Get submodule code

The project bundles the NativeScript modules and Angular as source code dependencies set up as git submodules. You need to get them by running:

$ git submodule update --init

Prerequisites

Install your native toolchain and NativeScript as described in the docs:

https://docs.nativescript.org/setup/quick-setup

Install dependencies

$ npm install -g grunt-cli gulp

Then install the needed NPM packages:

$ npm install

Compile and prepare NativeScript and Angular

$ grunt prepare

Initialize the test NativeScript app (ng-sample)

$ cd ng-sample
$ npm install
$ grunt prepare

The latter installs the angular2 and tns-core-modules packages that you just built by running grunt prepare step in the project root.

Compile the ng-sample app

$ grunt app

Developer workflow:

  1. Make changes to src/nativescript-angular, and rebuild with grunt build. If succesful, you should get a npm package in the project root.
  2. Navigate to the ng-sample subdir: $ cd ng-sample. Make some changes to the app or ../src/nativescript-angular.
  3. Compile app: $ grunt app
  4. Run with $ tns run android or $ tns run ios

Protip: combine #2 and #3 above in a single command run from the project root directory (works only on Unixy shells):

$ grunt app && tns run android

On Windows, you can wrap those commands in a BAT file.

Note that you should never change files in ng-sample/src/nativescript-angular/ as they are overwritten with the reference sources in src/nativescript-angular on every grunt app run.

Watch the video explaining Angular 2 and NativeScript

NativeScript session on AngularConnect conference

Explore the examples

The ng-sample app is meant for testing stuff while developing the renderer code, and isn't the best example out there. You can take a look at these sample apps that use the published builds from npm:

Known issues

  1. There are certain issues with the Parse5DomAdapter and we'll likely need to provide our own later on:
  • Element and attribute names always get lowercased.
  • Self-closing elements (<Label text="Name" /><Button text="Save" />) get parsed wrong (in this case Button gets parsed as a Label child.

About

A NativeScript renderer for Angular 2

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.7%
  • TypeScript 1.3%