🛠️ Configuration et Premier Pas
Configuration de l'environnement de développement
Prérequis
Tout comme React, Svelte, Node, React Native et j'en passe Ionic nécessite d'avoir Node.js et npm d'installé sur ma machine.
Installation de Node.js et npm
Rendez-vous sur le site de Node.js et téléchargez la dernière version LTS (Long Term Support) pour ton système d'exploitation.
Une fois l'installation terminée, ouvrez un terminal et vérifiez que Node.js et npm sont bien installés en tapant les commandes suivantes:
node -v
npm -v
Installation de Ionic CLI
Ionic CLI est un outil en ligne de commande qui permet de créer, développer, tester et déployer des applications Ionic.
Pour l'installer, ouvrez un terminal et tapez la commande suivante:
npm install -g @ionic/cli
On peut maintenant vérifier que Ionic CLI est bien installé en tapant la commande suivante:
ionic -v
On est prêt à créer notre première application Ionic !