19 lines
453 B
Markdown
19 lines
453 B
Markdown
|
|
# Example JS frontend application with coroutines
|
||
|
|
|
||
|
|
Build application with
|
||
|
|
|
||
|
|
```
|
||
|
|
gradlew :example-frontend-js:build
|
||
|
|
```
|
||
|
|
|
||
|
|
The resulting application can be found in `build/dist` subdirectory.
|
||
|
|
|
||
|
|
You can start application with webpack-dev-server using:
|
||
|
|
|
||
|
|
```
|
||
|
|
gradlew :example-frontend-js:run
|
||
|
|
```
|
||
|
|
|
||
|
|
Built and deployed application is available at the library documentation site
|
||
|
|
[here](https://kotlinlang.org/api/kotlinx.coroutines/example-frontend-js/index.html).
|