Skip to content
🔧 Angular CLI for Nativescript. Generates component for Nativescript Angular projects
JavaScript
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
src
.gitignore
.npmignore
LICENSE
README.md
package.json

README.md

Tns Ng

npm version

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

You can’t perform that action at this time.