Skip to content
Damyan Petev edited this page Mar 19, 2026 · 6 revisions

Introduced in Ignite UI CLI v1.3.0

ig list

The ig list lists all templates for the specified framework and type. When you run the command within a project folder it will list all templates for the project's framework and type, even if you provide different ones.

Arguments

framework

--framework (alias: -f) default value: "jquery"

Framework to setup the template for. Your custom template will be available only when creating a project in the respective framework. The supported frameworks are jQuery, Angular and React.

type

--type (alias: -t)

The available project types depend on the selected framework. Currently, Angular, React, Web Components and jQuery projects support a single type only - `igx-ts`, `igr-ts`, `igc-ts` and `js` respectively. As those are default project types, you do not need to provide `--type` argument explicitly.

Listing all templates for specific framework

To list all templates for specific framework run list outside a project folder. Following are examples of how to use the list command:

Framework Code
Angular ig list --framework=angular --type=igx-ts
Using aliases: ig l -f=angular -t=igx-ts
React ig list --framework=react --type=igr-ts
Using aliases: ig l -f=react -t=igr-ts
Web Components ig list --framework=webcomponents --type=igc-ts
Using aliases: ig l -f=webcomponents -t=igc-ts
jQuery ig list --framework=jquery
Using aliases: ig l -f=jquery

Listing all templates for specific project

To list all templates for specific project run list from the project folder:
ig list

Clone this wiki locally