Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.05 KB

README.md

File metadata and controls

40 lines (28 loc) · 1.05 KB

Literally Canvas v0.4.13

Literally Canvas is an extensible, open source (BSD-licensed), HTML5 drawing widget. Its only dependency is React.js.

Get help on our mailing list: mailto:[email protected] (just send it a message to subscribe)

This is all it takes:

<div class="literally with-jquery"></div>
<script>
  $('.literally.with-jquery').literallycanvas();
</script>

<div class="literally without-jquery"></div>
<script>
  LC.init(document.getElementsByClassName('literally without-jquery')[0]);
</script>

Developing

Setup: npm install --dev

Watching and serving: gulp dev

Browse to localhost:8000/demo and modify demo/index.html to test code in progress.

To generate a production-ready .js file, run gulp and pull out either lib/js/literallycanvas.js or lib/js/literallycanvas.min.js.