2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Angular使いの NativeScriptハンズオン

Last updated at Posted at 2018-10-22

NativeScriptとは?

NativeScriptは、
クロスプラットフォームのネイティブなiOSとAndroidアプリをWebビューなしで構築する方法です
Angular、TypeScript等の、Webスキルとコードを再利用しながら、ネイティブなUIとパフォーマンスを実現することができます。

NativeScript 初めの一歩

NativeScript インストール

npm install -g nativescript

NativeScript でAngularのテンプレートを使用

Angular Template を使用するには、 --ng オプションを追加する。

tns create ${app-name} --ng

iOS用にエミュレーション

既にAngularのサンプル用のテンプレートができているので、今回はそちら表示させます。

tns run ios

android用にエミュレーション

既にAngularのサンプル用のテンプレートができているので、今回はそちら表示させます。

tns run android

参考:

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?