Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sveltejs/realworld
SvelteKit implementation of the RealWorld app
https://github.com/sveltejs/realworld
Last synced: 4 days ago
JSON representation
SvelteKit implementation of the RealWorld app
- Host: GitHub
- URL: https://github.com/sveltejs/realworld
- Owner: sveltejs
- License: mit
- Created: 2017-12-24T01:28:21.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-22T02:57:06.000Z (3 months ago)
- Last Synced: 2024-10-29T14:31:51.683Z (2 months ago)
- Language: Svelte
- Homepage: https://realworld.svelte.dev
- Size: 784 KB
- Stars: 2,239
- Watchers: 40
- Forks: 351
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-sveltekit - [code
README
# ![RealWorld Example App](logo.png)
> ### [Svelte](https://github.com/sveltejs/svelte) codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.
### [Demo](https://realworld.svelte.dev) [RealWorld](https://github.com/gothinkster/realworld)
This codebase was created to demonstrate a fully fledged fullstack application built with SvelteKit including CRUD operations, authentication, routing, pagination, and more.
For more information on how to this works with other frontends/backends, head over to the [RealWorld](https://github.com/gothinkster/realworld) repo.
## Running locally
```bash
npm install
npm run dev
```To build and start in prod mode:
```bash
npm run build
npm run preview
```