tns-ng
Angular CLI for Nativescript. Generates component for Nativescript Angular projects
npm i --save tns-ng
- Version: 1.1.0
- GitHub: https://github.com/yezarela/tns-ng
- NPM: https://www.npmjs.com/package/tns-ng
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
Tns Ng
Angular CLI for Nativescript. Generates component for Nativescript Angular projects
Table of Contents
Installation
npm install -g tns-ng
Usage
tng --help
Generating Components and Services
tng generate|g [type] [name]
You can use the tng generate
(or just tng g
) command to generate Nativescript Angular components:
tng generate component my-component
tng g component my-component # using the alias
# components support relative path generation
# if in the directory app/feature/ and you run
tng g component my-component
# your component will be generated in app/feature/my-component
# but if you were to run
tng g component feature/my-component
# your component will be generated in app/feature/my-component
# This will create four files:
__my-component__/__my-component__.component.html
__my-component__/__my-component__.component.ts
__my-component__/__my-component__.component.android.css
__my-component__/__my-component__.component.ios.css
You can find all possible types in the table below:
Scaffold | Usage |
---|---|
Component | tng g component my-component |
Service | tng g service my-service |
Contributing
Just fork and pull request :D