Skip to content

Commit fb798a5

Browse files
committed
Update toolchain version, script, and README.md
1 parent 1c2d096 commit fb798a5

File tree

3 files changed

+84
-17
lines changed

3 files changed

+84
-17
lines changed

.swift-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
wasm-5.3-SNAPSHOT-2020-10-02-a
1+
wasm-5.3-SNAPSHOT-2020-10-16-a

README.md

+77-13
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,7 @@
44

55
Swift framework to interact with JavaScript through WebAssembly.
66

7-
## Requirements
8-
9-
This library only supports [`swiftwasm/swift`](https://github.com/swiftwasm/swift) distribution toolchain. The toolchains can be installed via [`swiftenv`](https://github.com/kylef/swiftenv) like official nightly toolchain. You can use the `install-toolchain.sh` helper script that does this for you:
10-
11-
```sh
12-
$ ./scripts/install-toolchain.sh
13-
$ swift --version
14-
Swift version 5.3-dev (LLVM 09686f232a, Swift 5a196c7f13)
15-
Target: x86_64-apple-darwin19.6.0
16-
```
17-
18-
## Usage
7+
## Getting started
198

209
This JavaScript code
2110

@@ -66,4 +55,79 @@ let swiftPet: Pet = try JSValueDecoder().decode(from: jsPet)
6655
alert("Swift is running on browser!")
6756
```
6857

69-
Please see [Example](https://github.com/swiftwasm/JavaScriptKit/tree/main/Example) directory for more information
58+
### Usage in a browser application
59+
60+
The easiest way to get started with JavaScriptKit in your browser app is with [the `carton`
61+
bundler](https://carton.dev).
62+
63+
As a part of these steps
64+
you'll install `carton` via [Homebrew](https://brew.sh/) on macOS (unfortunately you'll have to build
65+
it manually on Linux). Assuming you already have Homebrew installed, you can create a new app
66+
that uses JavaScriptKit by following these steps:
67+
68+
1. Install `carton`:
69+
70+
```
71+
brew install swiftwasm/tap/carton
72+
```
73+
74+
If you had `carton` installed before this, make sure you have version 0.6.1 or greater:
75+
76+
```
77+
carton --version
78+
```
79+
80+
2. Create a directory for your project and make it current:
81+
82+
```
83+
mkdir SwiftWasmApp && cd SwiftWasmApp
84+
```
85+
86+
3. Initialize the project from a template with `carton`:
87+
88+
```
89+
carton init --template basic
90+
```
91+
92+
4. Build the project and start the development server, `carton dev` can be kept running
93+
during development:
94+
95+
```
96+
carton dev
97+
```
98+
99+
5. Open [http://127.0.0.1:8080/](http://127.0.0.1:8080/) in your browser and a developer console
100+
within it. You'll see `Hello, world!` output in the console. You can edit the app source code in
101+
your favorite editor and save it, `carton` will immediately rebuild the app and reload all
102+
browser tabs that have the app open.
103+
104+
You can also build your project with webpack.js and a manually installed SwiftWasm toolchain. Please
105+
see the following sections and the [Example](https://github.com/swiftwasm/JavaScriptKit/tree/main/Example)
106+
directory for more information in this more advanced use case.
107+
108+
### Manual toolchain installation
109+
110+
This library only supports [`swiftwasm/swift`](https://github.com/swiftwasm/swift) distribution
111+
toolchain. The toolchain can be installed via [`swiftenv`](https://github.com/kylef/swiftenv), in
112+
the same way as the official Swift nightly toolchain.
113+
114+
You have to install the toolchain manually when working on the source code JavaScriptKit itself,
115+
especially if you change anything in the JavaScript runtime parts. This is because the runtime is
116+
embedded in `carton` and currently can't be replaced dynamically with the JavaScript code you've
117+
updated locally.
118+
119+
Just pass a toolchain archive URL for [the latest SwiftWasm 5.3
120+
snapshot](https://github.com/swiftwasm/swift/releases) appropriate for your platform:
121+
122+
```sh
123+
$ swiftenv install https://github.com/swiftwasm/swift/releases/download/swift-wasm-5.3-SNAPSHOT-2020-10-16-a/swift-wasm-5.3-SNAPSHOT-2020-10-16-a-macos-x86_64.tar.gz
124+
```
125+
126+
You can also use the `install-toolchain.sh` helper script that uses a hardcoded toolchain snapshot:
127+
128+
```sh
129+
$ ./scripts/install-toolchain.sh
130+
$ swift --version
131+
Swift version 5.3-dev (LLVM 09686f232a, Swift 5a196c7f13)
132+
Target: x86_64-apple-darwin19.6.0
133+
```

scripts/install-toolchain.sh

+6-3
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,16 @@ fi
1818

1919
case $(uname -s) in
2020
Darwin)
21-
toolchain_download="$swift_tag-osx.tar.gz"
21+
toolchain_download="$swift_tag-macos-x86_64.tar.gz"
22+
echo '-macos' >> .swift-version
2223
;;
2324
Linux)
2425
if [ $(grep RELEASE /etc/lsb-release) == "DISTRIB_RELEASE=18.04" ]; then
25-
toolchain_download="$swift_tag-ubuntu18.04.tar.gz"
26+
toolchain_download="$swift_tag-ubuntu18.04-x86_64.tar.gz"
27+
echo '-ubuntu18.04' >> .swift-version
2628
elif [ $(grep RELEASE /etc/lsb-release) == "DISTRIB_RELEASE=20.04" ]; then
27-
toolchain_download="$swift_tag-ubuntu20.04.tar.gz"
29+
toolchain_download="$swift_tag-ubuntu20.04-x86_64.tar.gz"
30+
echo '-ubuntu20.04' >> .swift-version
2831
else
2932
echo "Unknown Ubuntu version"
3033
exit 1

0 commit comments

Comments
 (0)