[[oktatas:web:nodejs|< Node.js]] ====== Parcel ====== * **Szerző:** Sallai András * Copyright (c) 2022, Sallai András * Szerkesztve: 2022-2024 * Licenc: [[https://creativecommons.org/licenses/by-sa/4.0/|CC BY-SA 4.0]] * 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.