aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorIndrajith K L2018-02-15 14:24:00 +0530
committerIndrajith K L2018-02-15 14:24:00 +0530
commit506c63b251aaf537015aa7c05e1cab80d435e35d (patch)
treebfb1b9af9f3596c445dc256d7858696c571b0590 /README.md
downloadsvelte-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.md33
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.
+