# npm
# Install Node.js and npm
# Infos : Node.js minimum v14.x for Adonis.js
npm install -g npm
# Install dependencies
npm installInstall a global package, to update major/minor versions of available packages npm :
# npm
npm install -g npm-check-updates Pour voir mise à jour des packages disponible de npm, exécutez ce qui suit à la racine :
ncuUpdating Dependencies, pour mettre à jour les dépendances npm, exécutez ce qui suit à la racine :
ncu --u && npm installStart the development server on http://localhost:3333
node ace serve --watchBuild the application for production :
node ace build --productionYou must install production-only dependencies inside the build folder :
cd build
npm ci --productionStart server :
node server.jsCheckout the deployment documentation for more information.