Thread overview
Reloaded Vibes: Smart auto-reloading service and server for (web) development.
May 13, 2019
0xEAB
May 29, 2019
0xEAB
Jun 27, 2019
BN26
Jul 12, 2019
0xEAB
May 13, 2019
"Are you're tired of hitting the refresh button again and again while developing?" - a rhetorical question, I know. So, let's start with a short story:


----- Story
(Scroll down to skip)


  A year and a few months ago, I was writing my diploma thesis and finishing my diploma project - a single-page web app. Thanks to the framework I used, Aurelia, I came in contact with a pretty handy feature: whenever I saved one file in the source directory, my browser would automatically refresh and I'd be able to see the recent version of my app.

  How did this work?
There was one special part in the CLI toolchain introduced by Aurelia: Browsersync[0]. I did not only take care of acting as a development web server, but it did also call the Babel transpiler and a bundler in order to transform my code into a single JS file for the browser to execute. After doing so, it also tell my browser to refresh. To simplify that, the dev server did simply "inject" some loader into my HTML page.


  Back to the present.
While doing some web development, I realized how tedious it is to always hit refresh after applying some changes.
  What's more? While with simple scripts directly executed by some interpreter (e.g. PHP) it's just a single click on the refresh button (or F5), but there might be further preprocessors involved (e.g. Babel, Webpack). The simple "one-click to refresh" turns into an "execute that command here, press reload there, etc." procedure.

  Inspired by my diploma project, I installed Browsersync. And configured it - well, at least, I tried to do so. While there are (probably) neat presets (so called "recipes") for using it along with many well-known tools, I did find pretty few information on how to set this stuff up manually (in order to configure Browsersync for my setup - instead of the roughly easier route of basing my setup on Browsersync). While playing around with that, I realized that I'd prefer some easier and simpler solution.


----- End of Story


This was how I came up with "Reloaded Vibes".
I call it "a smart auto-reloading service and server for web development."

It watches the specified directories for changes and notifies web browsers (or other client applications) through its WebSocket server of them. This way those clients can respond to the change and e.g. reload the page so that they'll display the recent changes made by the user.

There are no config files; instead everything is configured by command line arguments.

Moreover, it features a built-in webserver for serving static files. Utilizing it's script-injection feature it can automatically insert the script loader into HTML pages, so one doesn't have to take care of it manually.


Usage:
./reloaded-vibes --watch=<DIRECTORY TO WATCH> --action=<COMMANDLINE> --webserver=<WWW SOCKET> --htdocs=<DOCUMENT ROOT>


Full manual and source code available on GitHub.[1]
It's on DUB, too.[2]


Technical details: powered by vibe.d and FSWatch[3].
License: Boost and MIT (applies to vibe.d, thus also to the RV binary)


 - Elias




[0] https://browsersync.io/
[1] https://github.com/voidblaster/reloaded-vibes
[2] http://reloaded-vibes.dub.pm/
[3] https://github.com/WebFreak001/FSWatch
May 29, 2019
On Monday, 13 May 2019 at 21:56:11 UTC, 0xEAB wrote:
> [1] https://github.com/voidblaster/reloaded-vibes
> [2] http://reloaded-vibes.dub.pm/


Reloaded Vibes v0.2.0 was released today.


Let me summarize what changed:

- First, the executable's target name changed (from `reloaded-vibes`) to simply `rlv`.

- Most importantly, the UI got improved.
   - The startup info shows up above all.
   - Sockets in startup info are now shown as URLs.
      --> Allows terminals can interpreted them as links.
   - Action commands outputs are cleanly separated with dashed lines.

- The manual was slightly enhanced.

- In previous releases, Reloaded Vibes wouldn't detect changes when there were no active websocket connections, and therefore no action commands did get executed in such a case. This is finally fixed. (Note: --noservice mode wasn't affected.)


Go check it out: https://github.com/voidblaster/reloaded-vibes/releases/tag/v0.2.0


Kind regards,
 Elias
June 27, 2019
On Wednesday, 29 May 2019 at 16:15:38 UTC, 0xEAB wrote:
> On Monday, 13 May 2019 at 21:56:11 UTC, 0xEAB wrote:
>> [...]
>
>
> Reloaded Vibes v0.2.0 was released today.
>
>
> Let me summarize what changed:
>
> [...]

Amazing work! I was looking for something like this.

At the moment, I have to rerun dub after every change, it's a pain to develop with Vibe.d
July 12, 2019
On Thursday, 27 June 2019 at 15:50:43 UTC, BN26 wrote:
> Amazing work! I was looking for something like this.
>
> At the moment, I have to rerun dub after every change, it's a pain to develop with Vibe.d

Hey, nice to hear it's useful to you :)


For usage with vibe.d:
I'd recommend to pass a script to --action that kills all running instances of your app and then re-builds + restarts afterwards.

Do you already have something similar in use?