Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mathieudutour/sketch-chat
A Sketch plugin to chat in Sketch Cloud files
https://github.com/mathieudutour/sketch-chat
chat real-time sketch sketch-plugin
Last synced: about 2 months ago
JSON representation
A Sketch plugin to chat in Sketch Cloud files
- Host: GitHub
- URL: https://github.com/mathieudutour/sketch-chat
- Owner: mathieudutour
- Created: 2019-10-17T22:00:16.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T08:13:55.000Z (almost 2 years ago)
- Last Synced: 2024-10-17T16:14:35.113Z (2 months ago)
- Topics: chat, real-time, sketch, sketch-plugin
- Language: JavaScript
- Size: 10.7 MB
- Stars: 21
- Watchers: 3
- Forks: 3
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# 💬 sketch-chat
_A Sketch plugin to chat in Sketch Cloud files._
[![demo](./sketch-assets/Sketch-Chat.gif)](https://twitter.com/MathieuDutour/status/1189219751869988867)
## Installation
- [Download](../../releases/latest/download/sketch-chat.sketchplugin.zip) the latest release of the plugin
- Un-zip
- Double-click on sketch-chat.sketchplugin## Development Guide
_This plugin was created using `skpm`. For a detailed explanation on how things work, checkout the [skpm Readme](https://github.com/skpm/skpm/blob/master/README.md)._
### Sketch Plugin
Install the dependencies
```bash
npm install
```Once the installation is done, you can run some commands inside the project folder:
```bash
npm run build
```To watch for changes:
```bash
npm run watch
```### Backend
The backend is a nodeJS application deployed automatically on Heroku.
Install the dependencies
```bash
cd backend && npm install
```