diff options
author | Indrajith K L | 2018-02-15 14:24:00 +0530 |
---|---|---|
committer | Indrajith K L | 2018-02-15 14:24:00 +0530 |
commit | 506c63b251aaf537015aa7c05e1cab80d435e35d (patch) | |
tree | bfb1b9af9f3596c445dc256d7858696c571b0590 /README.md | |
download | svelte-app-506c63b251aaf537015aa7c05e1cab80d435e35d.tar.gz svelte-app-506c63b251aaf537015aa7c05e1cab80d435e35d.tar.bz2 svelte-app-506c63b251aaf537015aa7c05e1cab80d435e35d.zip |
Initial Commit - Fixed the 'npm run dev' command issue. Original script doesn't build files when changed.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..a9f4234 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +## svelte app (Modified) + +This is a project template for [Svelte](https://svelte.technology) apps. Original url at https://github.com/sveltejs/template. + +To create a new project based on this template using [degit](https://github.com/Rich-Harris/degit): + +```bash +npm install -g degit # you only need to do this once + +degit sveltejs/template svelte-app +cd svelte-app +``` + +*Note that you will need to have [Node.js](https://nodejs.org) installed.* + + +## Get started + +Install the dependencies... + +```bash +cd svelte-app +npm install +``` + +...then start [Rollup](https://rollupjs.org): + +```bash +npm run dev +``` + +Navigate to [localhost:5000](http://localhost:5000). You should see your app running. Edit a component file in `src`, save it, and reload the page to see your changes. + |