[[oktatas:web:nodejs|< NodeJS]] ====== Parcel ====== * **Szerző:** Sallai András * Copyright (c) 2022-2023, Sallai András * Licenc: [[https://creativecommons.org/licenses/by-sa/4.0/|CC Attribution-Share Alike 4.0 International]] * Web: https://szit.hu ===== A Parcel ===== Konfigurálás nélkül használható fejlesztői szerver, ami mentésre frissít. Webhely: * https://parceljs.org/ (2022) ===== Telepítés ===== npm install --save-dev parcel ===== Indítás ===== parcel src/index.html Esetleg a package.json fájlban: { "source": "src/index.html", "scripts": { "start": "parcel" }, } A parcel készít egy dist könyvtárat, azt futtatja és folyamatosan másol oda.