JSPM

  • Created
  • Published
  • Downloads 74270
  • Score
    100M100P100Q147217F
  • License MIT

An emoji guide for your commit messages.

Package Exports

  • gitmojis
  • gitmojis/src/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gitmojis) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gitmoji

Build Status Gitmoji

About

The emojis from the gitmoji convention bundled into a node module.

Install

npm i gitmojis

Usage

import { gitmojis } from 'gitmojis'

console.log(gitmojis)

/*
[
  {
    emoji: '🎨',
    entity: '🎨',
    code: '🎨',
    description: 'Improve structure / format of the code.',
    name: 'art',
    semver: null
  },
  {
    emoji: '⚡️',
    entity: '⚡',
    code: '⚡',
    description: 'Improve performance.',
    name: 'zap',
    semver: null
  },
  ...
]
*/

API

Alternatively you can also consume this as through HTTP using the API:

curl https://gitmoji.dev/api/gitmojis

Spread the word

Are you using Gitmoji on your project? Set the Gitmoji badge on top of your readme using this code:

<a href="https://gitmoji.dev">
  <img
    src="https://img.shields.io/badge/gitmoji-%20😜%20😍-FFDD67.svg?style=flat-square"
    alt="Gitmoji"
  />
</a>