[[oktatas:web:vue|< Vue]] ====== Npm ====== * **Szerző:** Sallai András * Copyright (c) Sallai András, 2021 * Licenc: [[https://creativecommons.org/licenses/by-sa/4.0/|CC Attribution-Share Alike 4.0 International]] * Web: https://szit.hu ===== Az npm telepítése Linuxon ===== Az npm és nodejs telepítése: apt-get install nodejs npm ln -s /usr/bin/nodejs /usr/local/bin/node Az n eszköz telepítése: npm install -g n Node frissítése: n stable Az npm frissítése: curl https://www.npmjs.com/install.sh | sh ===== Használat ===== A vue-cli telepítése: $ npm install -g vue-cli Alapkód megírása a webpack használatával: $ vue init webpack my-project Függőségek telepítése: $ cd my-project $ npm install Projekt futtatása: $ npm run dev