- If you are creating a svelte app, start it using the
npx degit sveltejs/template svelte-app
command inside the specific app directory. - If you are creating a react app, start it using the
npx create-react-app react-app
command inside the specific app directory. - If you are creating an alpine app, start with
index.html
andmain.css
files and import it using the CDN. - If you are creating an elm app, start it using the
elm init
command inside the specific app directory. Compile it withcompile.bat
. This will generate amain.js
file that can be accessed in the html file. - Use the same styles in all the apps. As svelte adds some extra styles, you can add some extra bit of CSS in the other apps to make it look consistent.
- Don't use any external packages.