446 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
446 Commandes
22 Développeurs
99 Technologies

446 résultat(s)

Installe et initialise TailwindCSS dans le projet.

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

Installe RxJS pour la programmation réactive.

bash
npm install rxjs

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

Recherche les vulnérabilités de sécurité dans les dépendances.

bash
npm audit

Corrige automatiquement les vulnérabilités de sécurité.

bash
npm audit fix

Affiche les informations détaillées sur chaque composant installé.

bash
flutter doctor -v

Affiche la version Flutter et Dart installées.

bash
flutter --version

Crée un nouveau projet Flutter avec la structure par défaut.

bash
flutter create nom_projet

Crée un projet avec un identifiant d'organisation personnalisé.

bash
flutter create --org com.company nom_projet

Crée un projet avec les plateformes cibles définies.

bash
flutter create --platforms=android,ios,web nom_projet

Crée un package Dart réutilisable.

bash
flutter create --template=package nom_package

Crée un plugin Flutter avec code natif.

bash
flutter create --template=plugin nom_plugin

Récupère toutes les dépendances du pubspec.yaml.

bash
flutter pub get

Met à jour toutes les dépendances vers leurs dernières versions compatibles.

bash
flutter pub upgrade