• Stars
    star
    234
  • Rank 165,378 (Top 4 %)
  • Language
    Scala
  • Created over 10 years ago
  • Updated almost 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Tooling around scala-js

Workbench

Example

A SBT plugin for scala-js projects to make development in the browser more pleasant.

  • Spins up a local web server on (by default) localhost:12345, whenever you're in the SBT console. Navigate to localhost:12345 in the browser and it'll show a simple page tell you it's alive. You can access any file within your project directory by going to localhost:12345/path/to/file in a browser.
  • Forwards all SBT logging from your SBT console to the browser console, so you can see what's going on (e.g. when the project is recompiling) without having to flip back and forth between browser and terminal.
  • Sends commands to tell the connected browsers to refresh/update every time your Scala.Js project completes a fastOptJS.

Check out the example app for a plug-and-play example of workbench in action.

Installation

  • Add to your project/plugins.sbt
// for sbt 1.0+
addSbtPlugin("com.lihaoyi" % "workbench" % "0.4.1")
// for sbt 0.13.x
addSbtPlugin("com.lihaoyi" % "workbench" % "0.3.1")
  • Add to your build.sbt
enablePlugins(WorkbenchPlugin)
  • For all web pages you would like to integrate with workbench, add
<script type="text/javascript" src="/workbench.js"></script>

Usage

Once the above installation steps are completed, simply open your desired HTML file via http://localhost:12345 with the URL path being any file part relative to your project root. e.g. localhost:12345/target/scala-2.12/classes/index.html. This should serve up the HTML file and connect it to workbench.

If you want to serve a defaultRootObject on http://localhost:12345 and serve only files from a root directory you can set this via:

workbenchDefaultRootObject := Some(("build/index-dev.html", "build/"))  // (defaultRootObject, rootDirectory) 

If you're accessing Workbench remotely over a slow network, you can enable compression of the transferred data with:

workbenchCompression := true

Compression is only supported on sbt 1.0+

Server Starting Behaviour

By default, the server starts up when sbt loads. Ie, starting the sbt terminal via sbt will start the server as well. This behaviour can be changed by adding on of the following settings to your build.sbt:

  • start the server on compilation (eg when running sbt "~fastOptJS")
workbenchStartMode := WorkbenchStartModes.OnCompile
  • start the server manually using the startWorkbenchServer task
workbenchStartMode := WorkbenchStartModes.Manual

Live Reloading

You have a choice of what you want to do when the code compiles.

Refresh page

This will to make any client browsers refresh every time fastOptJS completes, saving you flipping back and forth between SBT and the browser to refresh the page after compilation is finished. This is the default behavior.

Splice changes

// WorkbenchPlugin must NOT be enabled at the same time
enablePlugins(WorkbenchSplicePlugin)

This is an experimental feature that aims to perform an update to the code running in the browser without losing the state of the running code! Thus you can make changes to the code and have them immediately appear in the program, without having to restart and lose the current state of the application. See this video for a demo of it in action.

This live splicing is not doable in the general case, but only for some subset of changes:

  • Changes inside method bodies
  • Adding new defs and lazy vals to classes/objects
  • Creating entirely new classes/objects

This means that there are many changes that spliceBrowsers does not support, such as.

  • Adding new vals and vars to classes/objects
  • Modifying inheritance hierarchies
  • Changing the type of an existing val/var/lazy val
  • Renaming classes

And many more. If the change is something that Workbench does not support, you'll see errors in the browser console:

Example

And you'll need to refresh the page.

Note that you have to turn off the Scala.js inliner (as shown in the above SBT snippet) in order to have this work. The inliner performs inlinings across class and method boundaries that makes it hard to predict whether or not the live-splicer will work.

Lastly, note that spliceBrowsers does not retroactively modify the state of the application as if the changes in the code had always been present. For example, values set by the constructor in instances of a class will remain as-is even if you modify the class constructor; only new instances will be affected by the modified constructor.

In general, it is entirely possible to get into weird/invalid states due to this live-splicing, and the general solution is simply to refresh the page.


With this done, you should be receiving the SBT logspam (compilation, warnings, errors) in your browse console, and the page should be automatically refreshing/updating when the application gets recompiled. If you have problems setting this up, try starting from the example app and working from there.

Development

To develop, go into example/ and run sbt ~fastOptJS. Then you can go to

http://localhost:12345/target/scala-2.12/classes/index-dev.html

and see a small sierpinski-triangle application. Editing the code within example/ should cause the SBT log-spam to appear in the browser console, and changes (e.g. changing the color of the background fill) should cause a recompile and updating of the browser animation.

To make changes to workbench, modify the workbench source code and stop/re-run sbt ~fastOptJS. When workbench finishes re-compiling, SBT re-starts and the page becomes accessible, your changes to workbench will take effect.

Pull requests welcome!

Change Log

0.4.1

  • Allow host/port configuration

0.4.0 (sbt 1.0+ only)

  • Support sbt 1.0+

0.3.1 (sbt 0.13.x only)

  • Support for custom defaultRootObject and rootDirectory (by @torstenrudolf)
  • Custom Server starting behaviour (by @torstenrudolf)
  • Support multiple concurrent clients (by @torstenrudolf)

0.3.0

  • Migration to AutoPlugins
  • Removal of updateBrowsers feature, made obsolete by increased speed of fastOptJS
  • General upgrade of dependencies

0.2.3

  • Upgraded uPickle, removed need for special resolver

0.2.2

  • First implementation of spliceBrowsers

0.2.1

  • Added missing resolver http://dl.bintray.com/non/maven

0.2.0

  • First implementation of workbench client in Scala.js

0.1.5

  • Properly kill the spray server on plugin unload, sbt reload now works
  • Swap out play-json with upickle
  • (Internally) separate Spray server code with SBT madness

License

The MIT License (MIT)

Copyright (c) 2013 Li Haoyi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

macropy

Macros in Python: quasiquotes, case classes, LINQ and more!
TSQL
3,262
star
2

Metascala

A JVM written in Scala
Scala
1,159
star
3

scala.rx

An experimental library for Functional Reactive Programming in Scala
Scala
986
star
4

autowire

Macros for simple/safe RPCs between Scala applications, including ScalaJS/ScalaJVM
Scala
379
star
5

Scalatex

Programmable, Typesafe Document Generation
Scala
290
star
6

workbench-example-app

An example application written in ScalaJS using scala-js-dom and scala-js-workbench
Scala
205
star
7

Scalite

An experimental whitespace-delimited syntax for the Scala programming language
Scala
149
star
8

hands-on-scala-js

Better documentation for Scala.js
Scala
144
star
9

scala-js-games

Some simple games ported to Scala-Js
Scala
106
star
10

SprayWebSockets

An implementation of a websocket server on top of spray.io
Scala
105
star
11

scala-js-fiddle

Source code for Scala.jsFiddle
Scala
86
star
12

scala-native-example-app

Example Scala-Native application using third party libraries and a test suite
Scala
53
star
13

scala-bench

Some benchmarks of memory and runtime performance of Scala's collections
Scala
43
star
14

roll

A work-in-progress game being developed using scala-js
JavaScript
34
star
15

6858

The Worldโ€™s Most Advanced Sandboxโ„ข (TWMAS) is a portable sandbox designed to safely run untrusted Java bytecode
Java
29
star
16

XMLite

XMLite is a lightweight markup language
Scala
16
star
17

autojit

Scala
13
star
18

opendata

Python
11
star
19

crdt

Pure-Scala CRDTs
Scala
11
star
20

sinject

SInject is a Scala compiler plugin which helps auto-generate implicit parameters
Scala
10
star
21

Java-Games

A collection of old games written in Java, dating back to 2004-2007
Java
10
star
22

boxer

Scala
3
star
23

mysite

Source code for my old, dead blog (without the content which is lost)
Python
2
star
24

empty

1
star
25

utest-example-module

A skeleton for writing cross-platform Scala libraries
Scala
1
star
26

FSharpMetro

An attempt at making a Windows 8 game using F#
C#
1
star