Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gmac/paintr
A simple canvas-based paint app demo
https://github.com/gmac/paintr
Last synced: 29 days ago
JSON representation
A simple canvas-based paint app demo
- Host: GitHub
- URL: https://github.com/gmac/paintr
- Owner: gmac
- Created: 2014-10-08T12:36:14.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-11T13:39:55.000Z (about 10 years ago)
- Last Synced: 2024-04-14T22:19:47.246Z (7 months ago)
- Language: JavaScript
- Size: 367 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Paintr
A simple canvas-based paint app. Features include:
- Brush, eraser, and eye dropper tools.
- Paint color and brush size settings.
- Version history.
- Keyboard shortcuts.![Paintr](screenshot.jpg)
This app is an excercise in thinking about the components that manage a data-driven application. Intended for instructional use.
## Setup
This app is built in Middleman. To run, do:
```
cd paintr
bundle install
bundle exec middleman
```The app should now be running at `localhost:4567`
To build a static version of the app with flat HTML, CSS, and minified JavaScript, do:
```
bundle exec middleman build
```This will generate a `build` directory with the static app compiled into it.