Skip to content

Scrap emoji from Unicode

License

Notifications You must be signed in to change notification settings

dcdunkan/emoji-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Emoji Scraper

Parser for the emoji data provided by Unicode.

CLI Usage

You need Deno to use this tool.

$ 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:

$ !! --json --dedupe -o latest.json

Module

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.