Ta mémoire technique
collaborative
Ne perds plus jamais une commande. Recherche, copie et partage tes solutions techniques en quelques secondes.
Crée un projet Angular sans routing avec SCSS.
ng new nom-projet --routing=false --style=scss
Crée un projet Angular avec les composants standalone (Angular 17+).
ng new nom-projet --standalone
Configure le projet comme une Progressive Web App.
ng add @angular/pwa
Installe et initialise TailwindCSS dans le projet.
npm install -D tailwindcss postcss autoprefixer && npx tailwindcss init
Analyse la taille du bundle avec webpack-bundle-analyzer.
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.
npm list --depth=0
Crée un nouveau projet Angular avec les options interactives.
ng new nom-projet
Top commandes
Explorer par technologie
Des commandes à partager ?
Rejoins la communauté et partage tes solutions avec d'autres développeurs.
Créer mon compte