Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nunogois/sveltekit-rust-wasm
Example showcasing a new SvelteKit project using Svelte + TypeScript + Tailwind CSS + Rust + WebAssembly.
https://github.com/nunogois/sveltekit-rust-wasm
hacktoberfest rust rust-lang svelte sveltekit tailwindcss typescript vite wasm webassembly
Last synced: 24 days ago
JSON representation
Example showcasing a new SvelteKit project using Svelte + TypeScript + Tailwind CSS + Rust + WebAssembly.
- Host: GitHub
- URL: https://github.com/nunogois/sveltekit-rust-wasm
- Owner: nunogois
- Created: 2022-03-01T17:06:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-03-04T14:10:37.000Z (over 2 years ago)
- Last Synced: 2024-04-16T14:13:36.309Z (7 months ago)
- Topics: hacktoberfest, rust, rust-lang, svelte, sveltekit, tailwindcss, typescript, vite, wasm, webassembly
- Language: JavaScript
- Homepage:
- Size: 72.3 KB
- Stars: 24
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sveltekit-rust-wasm
Example showcasing a new SvelteKit project using Svelte + TypeScript + Tailwind CSS + Rust + WebAssembly.
Check out a Vue 3 example [here](https://github.com/nunogois/vite-vue-rust-wasm).
Want to check out a basic CRUD example where we make our requests using Rust? Check out this branch: [example-crud-actix](https://github.com/nunogois/sveltekit-rust-wasm/tree/example-crud-actix).
## Quick Start
### Prerequisites
1. First of all, [rustup](https://rustup.rs/) if you haven't already;
2. Update with `rustup update`;
3. Install [wasm-pack](https://rustwasm.github.io/wasm-pack/installer/) if you haven't already;
4. Globally install [cargo-watch](https://crates.io/crates/cargo-watch) with `cargo install cargo-watch` or `cargo binstall cargo-watch`;### Project
1. Setup the project (install dependencies and build wasm): `yarn setup`;
2. Run the project: `yarn dev`;
3. Build the project for release: `yarn build`;## Dev Log
1. Created SvelteKit project with `npm init svelte@next sveltekit-rust-wasm`;
2. Added Tailwind CSS as per [these instructions](https://tailwindcss.com/docs/guides/sveltekit);
3. Created `wasm` package with `wasm-pack new wasm`;
4. Installed [vite-plugin-wasm-pack](https://github.com/nshen/vite-plugin-wasm-pack) with `yarn add -D vite-plugin-wasm-pack` and added `wasm` package in `svelte.config.js`;
5. Added relevant scripts to `package.json`;
6. Added Svelte component `HelloWasm.svelte` with WebAssembly example;# create-svelte
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```bash
# create a new project in the current directory
npm init svelte@next# create a new project in my-app
npm init svelte@next my-app
```> Note: the `@next` is temporary
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev# or start the server and open the app in a new browser tab
npm run dev -- --open
```## Building
To create a production version of your app:
```bash
npm run build
```You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.