Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/flexwilliams/fat-finger-picasso

A simple HTML Canvas drawing library
https://github.com/flexwilliams/fat-finger-picasso

Last synced: about 1 month ago
JSON representation

A simple HTML Canvas drawing library

Awesome Lists containing this project

README

        

# fat finger picasso

A simple HTML Canvas drawing component

## Developing

```bash
# Install dependencies
pnpm install

# Start demo server
pnpm dev

# Test
pnpm test
```

Everything inside `src/lib` is part of the library, everything inside `src/routes` is used for the demo app.

## Building

To build the library:

```bash
npm run package
```


To create a production version of the demo app:

```bash
npm run build
```


To preview the production build:

```bash
npm run preview
```

## Publishing

```bash
npm publish
```