# npm
# Install Node.js and npm
# Infos : Node.js minimum v14.x for Adonis.js
npm install -g npm
# Install dependencies
npm install
Install 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 :
ncu
Updating Dependencies, pour mettre à jour les dépendances npm, exécutez ce qui suit à la racine :
ncu --u && npm install
Start the development server on http://localhost:3333
node ace serve --watch
Build the application for production :
node ace build --production
You must install production-only dependencies inside the build folder :
cd build
npm ci --production
Start server :
node server.js
Checkout the deployment documentation for more information.