nativescript 您的第一个Hello World程序

示例

$ mkdir hello-world
$ cd hello-world
$ tns create hello-world --ng
$ tns platform add android #You can only add ios on an OSX machine

然后确保已连接设备或正在运行仿真器(如果未运行,则应启动默认仿真器,否则将引发错误。我建议genymotion用于android)。

$ tns run android

如果要使用默认的Android模拟器,请添加该--emulator标志。

从tns 2.5开始,livesync现在是的默认操作tns run <platform>,当您保存文件更改时,它将自动重新编译。这可以大大缩短开发时间,但是,如果对插件进行了更改,则需要正确地重新编译。