TJKoury / svelte-capacitor

Build hybrid mobile apps using Svelte and CapacitorJS with live reloading!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Svelte + Capacitor (w/ live reload) Template

This is a project template for Svelte + CapacitorJS apps with live reload.

Note that you will need to have Node.js installed.

Get started

Install the dependencies...

cd svelte-capacitor
npm install

Run local dev server (no capacitor)

npm run dev

Add your Capacitor platform

npx cap platform add android // (or ios)

Develop on your device with livereload (hot reload)

You will need to append your workstation IP to the server.url section in capacitor.config.json

Tip: Remember you will need the http:// before the server ip.

Back in the root folder:

npm run dev:android

or

npm run dev:ios

This will run the capacitor/svelte project with a web view pointing to your workstation's IP.

You should see the message Welcome to Svelte! if svelte loaded correctly.

Try to change something in App.svelte, and you should see the content reload in your device.

  • You need to have an emulator/device connected to adb
  • Your device has to be connected to the same wifi network as your workstation.

To build a prod version:

Remember to remove the server.url in capacitor.config.json

npm run build:android

or

npm run build:ios

--

This project was inspired by @syonip

About

Build hybrid mobile apps using Svelte and CapacitorJS with live reloading!


Languages

Language:JavaScript 77.8%Language:CSS 11.2%Language:HTML 11.0%