An open API service indexing awesome lists of open source software.

https://github.com/mhadaily/nativescript-barcodevalidator

This is a small IOS and Android app to scan barcode and validate through API based on Angular2
https://github.com/mhadaily/nativescript-barcodevalidator

angular2 barcode nativescript

Last synced: about 1 month ago
JSON representation

This is a small IOS and Android app to scan barcode and validate through API based on Angular2

Awesome Lists containing this project

README

          

## NativeScript-BarcodeValidator

[BarcodeValidator]

###Development

This app is built with the NativeScript CLI. Once you have the [CLI installed](http://docs.nativescript.org/angular/tutorial/ng-chapter-1#11-install-nativescript-and-configure-your-environment), start by cloning the repo:

```
$ git clone https://github.com/mhadaily/NativeScript-BarcodeValidator.git
$ cd NativeScript-BarcodeValidator
```

Next, install the app's iOS and Android runtimes, as well as the app's npm dependencies:

```
$ tns install
```

From there you can use the `run` command to run app on iOS:

```
$ tns run ios --emulator
```

And the same command to run app on Android:

```
$ tns run android --emulator
```

Finally, use the `livesync` command to push out changes to your app without having to go through the full build cycle:

```
$ tns livesync ios --emulator --watch
```
```
$ tns livesync android --emulator --watch
```

###Debugging

You can run the debugger:
```
$ tns debug ios --emulator --watch
```
```
$ tns debug android --emulator --watch
```