How to change the default port 5000 in Svelte?

The sveltejs/template uses sirv-cli. You can add –port or -p in your start:dev script in package.json. Instead of: “start:dev”: “sirv public –single –dev” Use: “start:dev”: “sirv public –single –dev –port 5555” You can see more of sirv-cli options: https://github.com/lukeed/sirv/tree/master/packages/sirv-cli

How to pass parameters to on:click in Svelte?

TL;DR Just wrap the handler function in another function. For elegancy, use arrow function. You have to use a function declaration and then call the handler with arguments. Arrow function are elegant and good for this scenario. WHY do I need another function wrapper? If you would use just the handler and pass the parameters, … Read more