Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dcdunkan/emoji-scraper
Scrap emoji from Unicode
https://github.com/dcdunkan/emoji-scraper
emoji grammyjs unicode
Last synced: 15 days ago
JSON representation
Scrap emoji from Unicode
- Host: GitHub
- URL: https://github.com/dcdunkan/emoji-scraper
- Owner: dcdunkan
- License: mit
- Created: 2022-01-06T19:37:00.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-05T22:54:31.000Z (10 months ago)
- Last Synced: 2024-11-16T00:12:50.983Z (about 1 month ago)
- Topics: emoji, grammyjs, unicode
- Language: TypeScript
- Homepage:
- Size: 280 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Emoji Scraper
Parser for the emoji data provided by Unicode.
### CLI Usage
> You need [Deno](https://deno.land) to use this tool.
```bash
$ deno run --allow-write --allow-net \
https://raw.githubusercontent.com/dcdunkan/emoji-scraper/main/cli.ts \
[options]
```Provide the argument `--help` to see the available options.
**Example Usage**:
```bash
$ !! --json --dedupe -o latest.json
```### Module
```ts
import {
fetchEmoji,
} from "https://raw.githubusercontent.com/dcdunkan/emoji-scraper/main/mod.ts";const emoji = await fetchEmoji("15.1", {/* options */});
console.log(emoji); // array of `Emoji` type.
```