Shivam010 / svelte-template

Svelte App Template by Shivam

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

svelte template

build Netlify Status

This is a minimalized project template for Svelte apps. It lives at Shivam010/svelte-template. It adds some major functionalities in the Svelte official template

  • It comes with the default typescript setup
  • And provides minimalized default routing to the application using Page.js wrapped for svelte in ./src/router, you can see the example in the Handler.svelte component.
  • Also, it has default setup for handling environment variable files .env for configurations, using dotenv library, just define them in rollup.config.js and create corresponding type definitions in ./src/global.d.ts

Get started

Install the dependencies...

cd svelte-template
npm install

...then start Rollup:

npm run dev

Navigate to localhost:5000. You should see your app running. Edit a component file in src, save it, and reload the page to see your changes.

By default, the server will only respond to requests from localhost. To allow connections from other computers, edit the sirv commands in package.json to include the option --host 0.0.0.0.

If you're using Visual Studio Code we recommend installing the official extension Svelte for VS Code. If you are using other editors you may need to install a plugin in order to get syntax highlighting and intellisense.

Building and running in production mode

To create an optimised version of the app:

npm run build

You can run the newly built app with npm run start. This uses sirv, which is included in your package.json's dependencies so that the app will work when you deploy to platforms like Heroku.

License

This template is licensed under MIT License by Shivam010 and SvelteJs Contributors

About

Svelte App Template by Shivam

License:MIT License


Languages

Language:Svelte 44.9%Language:JavaScript 28.8%Language:CSS 17.0%Language:TypeScript 5.0%Language:HTML 4.3%