X Tutup
The Wayback Machine - https://web.archive.org/web/20200913050948/https://github.com/jooby-project/livereload-starter
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Build Status

livereload

Starter kit for LiveReload protocol.

quick preview

This project contains a simple static application.

App.java:

public class App extends Jooby {

  {
    /** Install Jackson: */
    use(new Jackson());

    /** Install LiveReload: */
    use(new LiveReload());

    /** CSS files: */
    assets("/css/**");

    /** Home page: */
    assets("/", "index.html");
  }

  public static void main(final String[] args) {
    run(App::new, args);
  }

}

Go to http://localhost:8080 wait for page load, then go to css/styles.css and edit the h1 style.

run

mvn jooby:run

help

About

Starter project for LiveReload

Topics

Resources

License

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.
X Tutup