Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/literallycanvas/literallycanvas
A canvas in your browser. Literally.
https://github.com/literallycanvas/literallycanvas
canvas drawing html html5 javascript ms-paint paint whiteboard
Last synced: 5 days ago
JSON representation
A canvas in your browser. Literally.
- Host: GitHub
- URL: https://github.com/literallycanvas/literallycanvas
- Owner: literallycanvas
- License: bsd-2-clause
- Archived: true
- Created: 2012-11-11T03:18:21.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2020-05-29T21:28:35.000Z (over 4 years ago)
- Last Synced: 2024-11-07T08:06:19.946Z (6 days ago)
- Topics: canvas, drawing, html, html5, javascript, ms-paint, paint, whiteboard
- Language: CoffeeScript
- Homepage: http://www.literallycanvas.com/
- Size: 3.4 MB
- Stars: 1,110
- Watchers: 64
- Forks: 323
- Open Issues: 94
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.txt
- License: LICENSE
Awesome Lists containing this project
README
Literally Canvas v1.0.0
=======================Literally Canvas is an extensible, open source (BSD-licensed), HTML5 drawing
widget. Its only dependencies are [React.js](http://facebook.github.io/react/) and its core lib which has been split up into a separate module [literallycanvas-core](https://github.com/literallycanvas/literallycanvas-core/).Get help on our mailing list by sending an email to
[[email protected]](mailto:[email protected])
or by visiting [Google Groups](https://groups.google.com/forum/#!forum/literallycanvas).### [Full documentation](http://literallycanvas.com)
### [Examples](http://github.com/literallycanvas/literallycanvas-demos)
Along with the CSS, JS, and image assets, this is all it takes:
```javascript
LC.init(document.getElementsByClassName('my-drawing')[0]);
```
State of the project
--------------------No one is maintaining this project. If you report a bug, the ticket will be a
helpful place for discussion, but no one will fix it unless you submit a pull
request. Feature requests will likewise be ignored.Pull requests will be merged promptly if they are basically OK.
Developing
----------Setup: `npm install --dev`
Watching and serving: `gulp dev`
Browse to `localhost:8080/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`.