December 2017
Beginner
372 pages
10h 32m
English
The NativeScript CLI provides a create command, which does the basic setup of the application with a couple of components. The create command has configurations that allow us to create an application with a pure JavaScript template, or a TypeScript template, or an Angular template. You can copy the startup project from an existing project as well. The following is the help command that provides all the configuration details for the create command:
tns create --help
We will be using the Angular template for our application, and hence our command will be as follows:
tns create SampleTrello --template ng
This command will create a folder named SampleTrello and set up the project with all the required dependencies ...
Read now
Unlock full access