-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from patricknelson/issue-23-example-docs
Fix for #23: Better documentation explaining how to get started
- Loading branch information
Showing
44 changed files
with
1,114 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# svelte-retag: Hello World | ||
|
||
This is an **MVP** demo that shows `svelte-retag` in action in its simplest form in local development with a | ||
`HelloWorld.svelte` component implemented as a `<hello-world>` custom element. | ||
|
||
To try it out yourself, make sure you have [Git](https://git-scm.com/downloads) and [Node](https://nodejs.org/) installed and then run: | ||
|
||
```bash | ||
git clone https://github.com/patricknelson/svelte-retag.git | ||
cd svelte-retag/demo/hello-world | ||
npm install | ||
npm run dev | ||
``` | ||
|
||
Then open your browser to [http://localhost:5173/](http://localhost:5173/) to view the demo. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/svelte-retag-favicon.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>svelte-retag: Hello World</title> | ||
</head> | ||
<body> | ||
<hello-world greetperson="👩🚀"></hello-world> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> |
File renamed without changes.
Oops, something went wrong.