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
- Host: GitHub
- URL: https://github.com/mhadaily/nativescript-barcodevalidator
- Owner: mhadaily
- Created: 2017-01-10T04:20:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-11T04:09:10.000Z (over 9 years ago)
- Last Synced: 2025-07-13T14:46:40.455Z (11 months ago)
- Topics: angular2, barcode, nativescript
- Language: Objective-C
- Homepage:
- Size: 5.82 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## NativeScript-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
```