Skip to content
This repository has been archived by the owner on Mar 2, 2018. It is now read-only.

tmtk75/jumly

Repository files navigation

README

JUMLY is a JavaScript library.
Using JUMLY, you can easily embed UML diagram on your HTML document.
All you need are just two things you use everyday.

  • Text editor you get used to use.
  • A modern browser like WebKit-base brwoser and Opera.
    (working for Firefox now)

For more information, see https://jumly.herokuapp.com/.
The auther's blog is http://tmtk75.github.com.

Getting Started

Copy following code, paste it at the place of your HTML document, and open the document.

<link href='https://jumly.herokuapp.com/release/0.1.1/jumly.min.css' rel="stylesheet"/>
<script src='http://code.jquery.com/jquery-1.8.2.min.js'></script>
<script src='http://jashkenas.github.com/coffee-script/extras/coffee-script.js'></script>
<script src='https://jumly.herokuapp.com/release/0.1.1/jumly.min.js'></script>
<script type='text/jumly+sequence'>
@found "You", ->
  @message "meet", "JUMLY"
</script>

Here is a minimal sample.

How to build

Requiring Node.js v0.8.9 or upper. nvm is good to get it.

In order to build jumly.js, jumly.css and minified ones, it's shortly steps.

$ git clone https://github.com/tmtk75/jumly.git
$ cd jumly
$ npm install
$ . .env
$ cake build

./build directory is created and it contains them.

How to develop

Written in CoffeeScript and stylus. They are in ./lib directory. ./lib/js/jumly.coffee organizes other *.coffee files in order.

On a webapp, which is described at next, you can use them without build. Editing *.coffee and *.styl, reload a page of webapp, and your change will make effect.

How to launch the webapp

You can launch the webapp using express.

$ . .env
$ ./app.coffee

Please access to localhost:3000 thru your browser.

How to run specs

Compile spec files, and open ./spec/index.html with your browser.

To compile them,

$ . .env
$ cake spec:compile

jasmine is used for writing specs.

License

JUMLY v0.1.2a is under MIT License.

JUMLY v0.1.2a, 2010-2012 copyright(c), all rights reserved Tomotaka Sakuma.

History

  • 0.1.2a, Dec 31, 2012
    • Fixed #4
  • Try JUMLY, Dec 29, 2012
    • interactive demo for sequence diagram
  • 0.1.2, Dec 29, 2012
    • change CSS class name for .participant, which was .object
  • Reference Manual r1 published Dec 10, 2012
  • 0.1.1 Nov 29, 2012
    • support @note directive
    • adjust margins and spaces in stylesheet
  • 0.1.0 Nov 23, 2012 -- initial release
    • support sequence diagram

Special Thanks