1

Is there a difference between using Svelte with Nativescript and "Svelte native" ?

If yes, what is the most significant difference in practice ?

Serge Hulne
  • 594
  • 5
  • 17
  • What do you mean by "Svelte native", if you mean [this](https://svelte-native.technology/), it uses NativeScript. – H.B. Jan 16 '23 at 18:33

1 Answers1

2

Svelte Native is a new approach to building mobile applications using NativeScript. Where other JavaScript mobile development frameworks like React Native and NativeScript-Vue do the bulk of their work on the mobile device, Svelte Native shifts that work into a compile step that happens when you build your app.

Instead of using techniques like virtual DOM diffing, Svelte writes code that surgically updates the native view widgets when the state of your app changes.

this is from svelte-native official web-site

so Svelte native is the name of the framework and that framework uses Nativescript.

H.B.
  • 166,899
  • 29
  • 327
  • 400
Ahmed Sbai
  • 10,695
  • 9
  • 19
  • 38