Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elikelierpolite/svelteway
The most svelte way to build UI's for your svelte kit applications!
https://github.com/elikelierpolite/svelteway
svelte sveltejs svelteui typescript
Last synced: 28 days ago
JSON representation
The most svelte way to build UI's for your svelte kit applications!
- Host: GitHub
- URL: https://github.com/elikelierpolite/svelteway
- Owner: elikelierpolite
- License: mit
- Created: 2023-03-15T21:23:21.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-06-10T13:29:18.000Z (5 months ago)
- Last Synced: 2024-10-04T03:05:20.929Z (about 1 month ago)
- Topics: svelte, sveltejs, svelteui, typescript
- Language: Svelte
- Homepage: https://svelteway.vercel.app
- Size: 3.82 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sveltway
> The most svelte way to build UI's for your svelte kit applications!
[![Watch the video](https://img.youtube.com/vi/r1Kag_QLsoM/maxresdefault.jpg)](https://youtu.be/r1Kag_QLsoM)
## Creating a project
```bash
# create a new project in the current directory
npm create svelteway@latest# create a new project in my-app
npm create svelteway@latest my-app
```## Basic usage
Wrap your root +layout with `` and pass the required data prop.
```svelte
import { Layout } from 'svelteway'
export let data;
const theme = JSON.parse(data.data.theme);
```
For more on +layout.server code, see [svelteway manual setup](https://svelteway.vercel.app/docs/installation).
## Thanks
Special Thanks to the Svelte Team, Tailwind Labs and DaisyUI.
```
MIT License Copyright (c) 2023 Elikelier PolitePermission is hereby granted,
free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to the
following conditions:The above copyright notice and this permission notice
(including the next paragraph) shall be included in all copies or substantial
portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```