https://github.com/jessebraham/sprunk
A minimalist pixel art editor built using Mithril
https://github.com/jessebraham/sprunk
gamedev javascript js mithril mithriljs pixel-art pixel-editor sprite
Last synced: about 2 months ago
JSON representation
A minimalist pixel art editor built using Mithril
- Host: GitHub
- URL: https://github.com/jessebraham/sprunk
- Owner: jessebraham
- License: mit
- Archived: true
- Created: 2020-02-10T01:29:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-11T06:57:38.000Z (over 4 years ago)
- Last Synced: 2025-03-16T01:28:59.243Z (2 months ago)
- Topics: gamedev, javascript, js, mithril, mithriljs, pixel-art, pixel-editor, sprite
- Language: JavaScript
- Homepage:
- Size: 811 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sprunk
**Sprunk** is a minimalist pixel art editor built using [Mithril].

A demo is available [here].
[Mithril]: https://mithril.js.org/
[here]: https://beta7.io/sprunk.html## Quickstart
Check out the repository and install all dependencies:
```bash
$ git clone https://github.com/jessebraham/sprunk.git
$ cd sprunk/
$ npm install
```The development server can be run via:
```bash
$ npm run start
```The application can then be accessed at [http://localhost:8080/](http://localhost:8080/).
To build, run either of the following:
```bash
$ npm run dev # development
$ npm run prod # production
```