https://github.com/jshawl/remoji
emoji reactions anywhere!
https://github.com/jshawl/remoji
emoji nobuild
Last synced: 4 months ago
JSON representation
emoji reactions anywhere!
- Host: GitHub
- URL: https://github.com/jshawl/remoji
- Owner: jshawl
- Created: 2024-10-01T22:21:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-13T22:59:22.000Z (over 1 year ago)
- Last Synced: 2025-10-19T22:03:25.089Z (8 months ago)
- Topics: emoji, nobuild
- Language: JavaScript
- Homepage: https://jshawl.github.io/remoji/
- Size: 128 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# remoji
[](https://badge.fury.io/js/@jshawl%2Fremoji)
emoji reactions anywhere! [demo](https://jshawl.github.io/remoji/)
## Usage
```html
import { remoji } from "https://www.unpkg.com/@jshawl/remoji@latest/remoji.js";
remoji.init();
```
## Configuration
```js
remoji.init({
apiUrl: "https://my-emoji-reaction-server.com", // default: https://remoji.jshawl.workers.dev
emojis: ["👍", "👎"], // default: ["👍", "😄", "❤️", "🚀", "👀"]
orgId: "acme corp, inc.", // default: window.location.host
userId: "jesse@jesse.sh", // default: crypto.randomUUID()
});
```
## Local Development
Start the client:
```
cd client && npm start
```
Start the server:
```
cd server && npm start
```
Open the development page:
```
open http://127.0.0.1:8080/examples/development.html
```