mirror of
https://github.com/thomaspcole/SvelteQuickstart.git
synced 2024-11-21 10:01:13 -05:00
public | ||
src | ||
.gitignore | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md | ||
rollup.config.js |
SvelteQuickstart
A quickstart for building material web apps with Svelte.
Getting Started
Before you begin make sure Node.js is installed.
- Setup using degit:
npx degit thomaspcole/sveltequickstart#main MyApp
cd MyApp/
- Clone this project and change the git origin.
git clone https://github.com/thomaspcole/SvelteQuickstart.git
cd SvelteQuickstart
git remote set-url origin https://github.com/YOURUSERNAME/YOURSVELTEAPP.git
- Download this repository and copy+paste. :)
Setup
#Install node modules
npm install
#Run Svelte app
npm run dev
#Build Svelte app
npm run build