Initialiser un projet Gatsby

Mis à jour le lundi 31 mai 2021 par johackim

Pour initialiser un projet Gatsby, il suffit d'installer node.js puis exécuter cette commande :

npm install --save gatsby react react-dom

Une fois installé, vous pouvez démarrer Gatsby avec la commande suivante :

./node_modules/.bin/gatsby develop

Puis ajoutez ces lignes dans votre fichier package.json afin d'avoir accès aux commandes de gatsby plus facilement :

"scripts": {
"build": "gatsby build",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
}

Vous pouvez à présent exécuter la commande npm start pour démarrer Gatsby.

PS : Exécutez la commande npm init -f si votre fichier package.json n'existe pas.