create-analog
Das Paket create-analog
enthält Vorlagen für die Erstellung neuer Analog-Projekte.
- npm
- Yarn
- pnpm
npm create analog@latest
yarn create analog
pnpm create analog
Optionale create-analog
-Kennzeichen
Kennzeichen | Beschreibung | Werttyp | Standardwert |
---|---|---|---|
<name> | Name des Projekts. Geben mit . an, das Projekt im aktuellen Verzeichnis einzurichten. | string | |
--template | Voreingestellte Vorlage. | string |
Vorlagen
Vorlage | Beschreibung |
---|---|
Full-stack Application | Standardanwendung Analog. |
Blog | Standardvorlage, erweitert um einem Blog-Beispiel. |
Beispiel
Um eine Angular-Anwendung im Verzeichnis my-angular-app
zu erstellen, ist Folgendes auszuführen:
- npm
- Yarn
- pnpm
# npm >=7.0
npm create analog@latest my-angular-app -- --template latest
# npm 6.x
npm create analog@latest my-angular-app -- --template blog
yarn create analog my-angular-app --template blog
pnpm create analog my-angular-app --template blog