mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
⬆️ Bump nodemon from 2.0.21 to 2.0.22 Bumps [nodemon](https://github.com/remy/nodemon) from 2.0.21 to 2.0.22. - [Release notes](https://github.com/remy/nodemon/releases) - [Commits](https://github.com/remy/nodemon/compare/v2.0.21...v2.0.22) --- updated-dependencies: - dependency-name: nodemon dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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: ':art:',
description: 'Improve structure / format of the code.',
name: 'art',
semver: null
},
{
emoji: '⚡️',
entity: '⚡',
code: ':zap:',
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>