Skip to content

Commit ac21526

Browse files
committed
Add improved docs
1 parent 8e66ee3 commit ac21526

File tree

4 files changed

+110
-25
lines changed

4 files changed

+110
-25
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* @typedef Info
3-
* Emoji rated for valence
3+
* Emoji rated for valence.
44
* @property {string} name
5-
* Name of emoji (according to `wooorm/gemoji`).
5+
* Name of emoji, according to `wooorm/gemoji`.
66
* @property {string} emoji
77
* Unicode emoji.
88
* @property {number} polarity

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "emoji-emotion",
33
"version": "3.0.0",
4-
"description": "List of emoji rated for valence in JSON",
4+
"description": "List of emoji rated for valence",
55
"license": "MIT",
66
"keywords": [
77
"gemoji",

readme.md

+103-18
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,59 @@
55
[![Downloads][downloads-badge]][downloads]
66
[![Size][size-badge]][size]
77

8-
List of emoji rated for valence with an integer between minus five (negative)
9-
and plus five (positive).
8+
List of emoji rated for valence.
109

11-
## Install
10+
## Contents
11+
12+
* [What is this?](#what-is-this)
13+
* [When should I use this?](#when-should-i-use-this)
14+
* [Install](#install)
15+
* [Use](#use)
16+
* [API](#api)
17+
* [`emojiEmotion`](#emojiemotion)
18+
* [Data](#data)
19+
* [Support](#support)
20+
* [Types](#types)
21+
* [Compatibility](#compatibility)
22+
* [Related](#related)
23+
* [Contribute](#contribute)
24+
* [Security](#security)
25+
* [License](#license)
26+
27+
## What is this?
1228

13-
This package is ESM only: Node 12+ is needed to use it and it must be `import`ed
14-
instead of `require`d.
29+
This is a list of unicode emoji rated for [valence][valence-wiki] (“goodness”
30+
vs “badness”).
1531

16-
[npm][]:
32+
## When should I use this?
33+
34+
This package can be used for sentiment analysis of emoji.
35+
You can use [`afinn-165`][afinn-165] for English words.
36+
Use [`gemoji`][gemoji] for more info on emoji.
37+
38+
## Install
39+
40+
This package is [ESM only][esm].
41+
In Node.js (version 14.14+, 16.0+), install with [npm][]:
1742

1843
```sh
1944
npm install emoji-emotion
2045
```
2146

47+
In Deno with [`esm.sh`][esmsh]:
48+
49+
```js
50+
import {emojiEmotion} from 'https://esm.sh/emoji-emotion@3'
51+
```
52+
53+
In browsers with [`esm.sh`][esmsh]:
54+
55+
```html
56+
<script type="module">
57+
import {emojiEmotion} from 'https://esm.sh/emoji-emotion@3?bundle'
58+
</script>
59+
```
60+
2261
## Use
2362

2463
```js
@@ -37,18 +76,30 @@ Yields:
3776
{ name: 'black_heart', emoji: '🖤', polarity: 3 } ]
3877
```
3978

40-
Note the information is intentionally limited.
41-
Check out [`gemoji`][gemoji] for more info: tags, descriptions, names, etc.
42-
4379
## API
4480

45-
This package exports the following identifiers: `emojiEmotion`.
81+
This package exports the identifier `emojiEmotion`.
4682
There is no default export.
4783

4884
### `emojiEmotion`
4985

50-
`Array<Info>`, where each object has `name` (`string`), `emoji` (`string`), and
51-
`polarity` (`number`).
86+
List of emoji rated for valence (`Array<Info>`).
87+
88+
##### `Info`
89+
90+
Emoji rated for valence.
91+
92+
##### `info.name`
93+
94+
Name of emoji, according to [`gemoji`][gemoji] (`string`).
95+
96+
##### `info.emoji`
97+
98+
Unicode emoji (`string`).
99+
100+
##### `info.polarity`
101+
102+
Integer between minus five (negative) and plus five (positive) (`number`).
52103

53104
## Data
54105

@@ -59,13 +110,10 @@ Special care was given to **not** classify based on the images (as [different
59110
vendors use different pictograms][checkmoji]), but only on words and how they
60111
are used.
61112

62-
Note that some emoji receive arguably confusing polarities, such as
113+
Some emoji receive arguably confusing polarities, such as
63114
`stuck_out_tongue_closed_eyes` (`0`), due to being used for both positive and
64115
negative emotions.
65116

66-
No images are included in this repository: the copyrighted material may or may
67-
not be available on the users computer.
68-
69117
## Support
70118

71119
<!--support start-->
@@ -193,6 +241,33 @@ not be available on the users computer.
193241

194242
<!--support end-->
195243

244+
## Types
245+
246+
This package is fully typed with [TypeScript][].
247+
It exports the additional type `Info`.
248+
249+
## Compatibility
250+
251+
This package is at least compatible with all maintained versions of Node.js.
252+
As of now, that is Node.js 14.14+ and 16.0+.
253+
It also works in Deno and modern browsers.
254+
255+
## Related
256+
257+
* [`afinn-165`][afinn-165]
258+
— list of English words rated for valence
259+
* [`gemoji`][gemoji]
260+
— info on gemoji (GitHub Emoji)
261+
262+
## Contribute
263+
264+
Yes please!
265+
See [How to Contribute to Open Source][contribute].
266+
267+
## Security
268+
269+
This package is safe.
270+
196271
## License
197272

198273
[MIT][license] © [Titus Wormer][author]
@@ -217,14 +292,24 @@ not be available on the users computer.
217292

218293
[npm]: https://docs.npmjs.com/cli/install
219294

295+
[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
296+
297+
[esmsh]: https://esm.sh
298+
299+
[typescript]: https://www.typescriptlang.org
300+
301+
[contribute]: https://opensource.guide/how-to-contribute/
302+
220303
[license]: license
221304

222305
[author]: https://wooorm.com
223306

224-
[gemoji]: https://github.com/wooorm/gemoji
307+
[unicode]: http://www.unicode.org/emoji/charts/full-emoji-list.html
225308

226-
[unicode]: http://www.unicode.org/Public/emoji/1.0/full-emoji-list.html
309+
[gemoji]: https://github.com/wooorm/gemoji
227310

228311
[afinn-165]: https://github.com/words/afinn-165
229312

230313
[checkmoji]: https://wooorm.com/checkmoji/
314+
315+
[valence-wiki]: https://en.wikipedia.org/wiki/Valence_\(psychology\)

script/build-data.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import fs from 'node:fs'
1+
import fs from 'node:fs/promises'
22
import {gemoji, nameToEmoji} from 'gemoji'
33
import {toJson} from 'plain-text-data-to-json'
44

55
/** @type {Record<string, string>} */
6-
const raw = toJson(fs.readFileSync('faces.txt', 'utf8'))
6+
const raw = toJson(String(await fs.readFile('faces.txt')))
77
/** @type {Array<string>} */
88
const all = []
99
const unclassified = new Set(['🤖'])
@@ -52,9 +52,9 @@ while (++index < gemoji.length) {
5252
}
5353
}
5454

55-
fs.writeFileSync(
55+
await fs.writeFile(
5656
'index.js',
57-
'/**\n * @typedef Info\n * Emoji rated for valence\n * @property {string} name\n * Name of emoji (according to `wooorm/gemoji`).\n * @property {string} emoji\n * Unicode emoji.\n * @property {number} polarity\n * Integer between minus five (negative) and plus five (positive).\n */\n\n/**\n * List of emoji rated for valence.\n *\n * @type {Array<Info>}\n */\nexport const emojiEmotion = ' +
57+
'/**\n * @typedef Info\n * Emoji rated for valence.\n * @property {string} name\n * Name of emoji, according to `wooorm/gemoji`.\n * @property {string} emoji\n * Unicode emoji.\n * @property {number} polarity\n * Integer between minus five (negative) and plus five (positive).\n */\n\n/**\n * List of emoji rated for valence.\n *\n * @type {Array<Info>}\n */\nexport const emojiEmotion = ' +
5858
JSON.stringify(faces, null, 2) +
5959
'\n'
6060
)

0 commit comments

Comments
 (0)