Reputation: 1432
Sorry I'm new to this. I have a new project that will use SvelteJS but the problem is the deployment server does not have nodejs server installed for administrative reason. So is there a way to use Svelte in my web app like VueJs where you have an option to use cdn only? Thank you.
Upvotes: 5
Views: 6293
Reputation: 12935
Give a try to Plenti go web server: https://github.com/plentico/plenti
But Plenti has no built-in server script engine.
The Algernon go web server has built-it Lua script support, but it has no built-in svelte compiler: https://github.com/xyproto/algernon/issues/125
Upvotes: 0
Reputation: 899
Take a look at sapper: https://sapper.svelte.dev/
You can use sapper export to generate a static svelte based website.
Upvotes: 2