Sveltekit Iroco landing page.
It needs node 14.15, and 16 for running playwright end-to-end tests.
see this url for installing node versions.
You can install dependencies with npm install (or pnpm install or yarn). Then run the unitests with
npm run testThen run the playwright end-to-end tests (after installing playwright browser) :
npx playwright install
npm run eetestTo run a server :
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --openTo create a static deployable version of your app with svelte adapter static:
npm run buildYou can preview the production build with npm run preview.