Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 1.04 KB

README.md

File metadata and controls

29 lines (19 loc) · 1.04 KB

Getting started with SvelteJS v3

This is a simple starter template for building and running an app using Svelte. To get going, make sure you have NodeJS and git installed on your machine.

Next, cd to the directory where this project has been cloned...

git clone https://github.com/Holben888/svelte-starter-template.git
cd ./svelte-starter-template

...install all project dependencies...

npm install

...and build the application.

npm run build

This should pull up a page in your favorite web browser saying "I'm an app!" If you look at the file rollup.config.js in your text editor, you should see imports for "live-reload" and "serve." These allow the webside to rebuild itself automatically when you add new code, and refresh the page in your browser so you can see your changes.

Next steps

Go visit the documentation page for SvelteJS to start building! 😃