Coder Social home page Coder Social logo

yisiqi / livereload-jvm Goto Github PK

View Code? Open in Web Editor NEW

This project forked from davidb/livereload-jvm

0.0 1.0 0.0 237 KB

A micro http-server compatible with LiveReload 2 (protocol). Should be used at compile/build-time.

License: The Unlicense

Java 27.98% JavaScript 72.02%

livereload-jvm's Introduction

Overview

A micro http server useful for dev ONLY :

  • serve static file
  • notify change to client via LiveReload protocol (over socket)

Usages

The default port is 35729 (like define in the LiveReload protocol). If you change the port then you could not use the Browsers Extension for LiveReload, but it should works if you insert a JavaScript snippet in your pages.

Cli

Download the livereload-jvm-0.2.0-onejar.jar (or regular jar + all dependencies from maven central).

java -jar livereload-jvm-0.2.0-onejar.jar -d web/root/path [port]

Java integration

//#repo central m2:http://repo1.maven.org/maven2/

import java.nio.file.FileSystems;
import net_alchim31_livereload.LRServer; //#from net.alchim31:livereload-jvm:0.2.0

int port = 35729;
Path docroot = FileSystems.getDefault().getPath("web/root/path");
new LRServer(port, docroot).run(); // == start() + join()

If you provide a plugin for your builder (maven, ant, sbt, gradle, plob, ...), let me know.

Links

Alternatives

  • LiveReload 2/3 the main tool (Mac & Windows only) include GUI
  • guard-livereload a LiveReload server-side for Guard (Ruby)
  • grunt-reload a LiveReload server-side for Grunt (javascript/nodejs)
  • LivePage an other way to "auto-reload"
  • without LiveReload : cd web/root/path && python -m http.server 8000 (python)

License

  • the project is under unlicense
  • the project (source and binaries) include [livereload.js], livereload.js is under MIT

livereload-jvm's People

Contributors

davidb avatar gashcrumb avatar alexvictoor avatar

Watchers

Yi Siqi avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.