408 commandes partagées

Ta mémoire technique
collaborative

Ne perds plus jamais une commande. Recherche, copie et partage tes solutions techniques en quelques secondes.

CodeBox
408 Commandes
13 Développeurs
99 Technologies

8 résultat(s) pour "projet"

Crée un projet Angular sans routing avec SCSS.

bash
ng new nom-projet --routing=false --style=scss

Installe toutes les dépendances du projet Angular.

bash
npm install

Crée un projet Angular avec les composants standalone (Angular 17+).

bash
ng new nom-projet --standalone

Configure le projet comme une Progressive Web App.

bash
ng add @angular/pwa

Installe et initialise TailwindCSS dans le projet.

bash
npm install -D tailwindcss postcss autoprefixer && npx tailwindcss init

Analyse la taille du bundle avec webpack-bundle-analyzer.

bash
npm install -g webpack-bundle-analyzer && ng build --stats-json && npx webpack-bundle-analyzer dist/nom-projet/stats.json

Affiche les dépendances directes du projet.

bash
npm list --depth=0

Crée un nouveau projet Angular avec les options interactives.

bash
ng new nom-projet