Go to file
Lann 4ae1127119
Merge pull request #1720 from fermyon/version-1.4.2
Update version to 1.4.2
2023-08-30 17:50:42 -04:00
.cargo chore: rename fermyon-* to spin-* 2021-11-29 19:12:45 -08:00
.devcontainer Squashed and signed. 2023-04-24 10:31:39 +01:00
.github ci(release.yml): serialize workflow runs 2023-08-23 16:10:07 -06:00
.vscode Remove autobindle from recommended VS Code extensions 2023-05-11 08:19:34 +12:00
crates Allow getting http trigger metadata from (locked)app from spin-http 2023-08-25 18:05:59 +02:00
deploy chore(docs): bump spin version 2023-03-23 15:59:07 -04:00
docs Merge pull request #1708 from kate-goldenring/homebrew-release-process 2023-08-24 09:07:05 -07:00
examples fix `spin-timer` example regression (#1667) 2023-07-17 14:47:59 -06:00
sdk docs(sdk/go): Add note about wit-bindgen version 2023-08-28 08:35:50 -07:00
src Use identifiable prefix for `spin up` temp dir 2023-08-24 13:22:20 +12:00
supply-chain Bump cargo-vet to 0.7.0. 2023-06-12 11:50:08 -07:00
templates Merge branch 'main' into v1.4 2023-08-30 15:02:26 -04:00
tests release: Update version to 1.4.2 2023-08-30 16:37:38 -04:00
tools/modsurfer chore: add tools directory and include modsurfer 2023-04-03 22:38:05 -06:00
wit Upgrade Rust SDK to wit-bindgen 0.7 2023-07-03 12:09:14 +02:00
.dockerignore generate appname for template based tests 2023-02-03 18:54:28 +05:30
.gitignore ref(sdk/go): use `spin build` for building test fixtures 2023-05-11 08:44:43 -07:00
CODE_OF_CONDUCT.md ref(*): add CoC, CONTRIBUTING files to repo 2022-05-12 19:07:39 -04:00
CONTRIBUTING.md Add `cargo vet` for auditing dependencies and SIP 2023-01-06 00:59:21 +00:00
Cargo.lock release: Update version to 1.4.2 2023-08-30 16:37:38 -04:00
Cargo.toml release: Update version to 1.4.2 2023-08-30 16:37:38 -04:00
LICENSE license: add LLVM exception to Apache License Version 2.0 2022-03-30 12:46:07 +02:00
Makefile Skip downloading canary Spin in build e2e tests 2023-06-27 14:27:09 +12:00
README.md Fix brokwn like to Key Value Store 2023-06-16 13:15:53 -07:00
build.rs Ensure test apps are being built into the appropriate target dir 2023-08-28 13:53:38 +02:00
e2e-tests-aarch64.Dockerfile Add cmake to e2e test docker containers 2023-07-09 19:31:45 -07:00
e2e-tests-docker-compose.yml Small cleanup 2023-05-23 14:43:27 +02:00
e2e-tests.Dockerfile Merge pull request #1603 from kate-goldenring/remove-zlib-dep 2023-07-10 12:26:08 -07:00

README.md

Fermyon Spin

spin logo

Spin is a framework for building, deploying, and running fast, secure, and composable cloud microservices with WebAssembly.

build status Discord

What is Spin?

Spin is an open source framework for building and running fast, secure, and composable cloud microservices with WebAssembly. It aims to be the easiest way to get started with WebAssembly microservices, and takes advantage of the latest developments in the WebAssembly component model and Wasmtime runtime.

Spin offers a simple CLI that helps you create, distribute, and execute applications, and in the next sections we will learn more about Spin applications and how to get started.

Getting started

See the Install Spin page of the Spin documentation for a detailed guide on installing and configuring Spin, but in short run the following commands:

curl -fsSL https://developer.fermyon.com/downloads/install.sh | bash
sudo mv ./spin /usr/local/bin/spin

Alternatively, you could build Spin from source.

To get started writing apps, follow the quickstart guide, and then follow the Rust, JavaScript, Python, or Go language guides, and the guide on writing Spin applications.

Usage

Below is an example of using the spin CLI to create a new Spin application. To run the example you will need to install the wasm32-wasi target for Rust.

$ rustup target add wasm32-wasi

First, run the spin new command to create a Spin application from a template.

# Create a new Spin application named 'hello-rust' based on the Rust http template, accepting all defaults
$ spin new --accept-defaults http-rust hello-rust

Running the spin new command created a hello-rust directory with all the necessary files for your application. Change to the hello-rust directory and build the application with spin build, then run it locally with spin up:

# Compile to Wasm by executing the `build` command.
$ spin build
Executing the build command for component hello-rust: cargo build --target wasm32-wasi --release
    Finished release [optimized] target(s) in 0.03s
Successfully ran the build command for the Spin components.

# Run the application locally.
$ spin up
Logging component stdio to ".spin/logs/"

Serving http://127.0.0.1:3000
Available Routes:
  hello-rust: http://127.0.0.1:3000 (wildcard)

That's it! Now that the application is running, use your browser or cURL in another shell to try it out:

# Send a request to the application.
$ curl -i 127.0.0.1:3000
HTTP/1.1 200 OK
foo: bar
content-length: 14
date: Thu, 13 Apr 2023 17:47:24 GMT

Hello, Fermyon         

You can make the app do more by editting the src/lib.rs file in the hello-rust directory using your favorite editor or IDE. To learn more about writing Spin applications see Writing Applications in the Spin documentation. To learn how to publish and distribute your application see the Publishing and Distribution guide in the Spin documentation.

For more information on the cli commands and subcommands see the CLI Reference.

Language Support for Spin Features

The table below summarizes the feature support in each of the language SDKs.

Feature Rust SDK Supported? TypeScript SDK Supported? Python SDK Supported? Tiny Go SDK Supported? C# SDK Supported?
Triggers
HTTP Supported Supported Supported Supported Supported
Redis Supported Not Supported Not Supported Supported Not Supported
APIs
Outbound HTTP Supported Supported Supported Supported Supported
Key Value Storage Supported Supported Supported Supported Not Supported
MySQL Supported Not Supported Not Supported Not Supported Not Supported
PostgreSQL Supported Not Supported Not Supported Not Supported Supported
Outbound Redis Supported Supported Supported Supported Supported
Extensibility
Authoring Custom Triggers Supported Not Supported Not Supported Not Supported Not Supported

Contributing

We are delighted that you are interested in making Spin better! Thank you! Please follow the contributing guide. And join our Discord server.

Stay in Touch

Follow us on Twitter: @spinframework

You can join the Spin community in our Discord server where you can ask questions, get help, and show off the cool things you are doing with Spin!