1.0.8 • Published 2 years ago

wordcloud-generator v1.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

wordcloud-generator

A wordcloud generator for nodejs

Installation

npm

npm install wordcloud-generator

yarn

yarn add wordcloud-generator

Examples

alt text

Usage

String

import {generate} from "wordcloud-generator";

const wordstring = "The quick brown fox jumps over the lazy dog";
await generate(wordstring, true, "wordcloud.png")

Array of words

import {generate} from "wordcloud-generator";

const words = ["word1", "word2", "word3"];
await generate(words, true, "wordcloud.png")

Map of strings and frequencies

import {generate} from "wordcloud-generator";

const words = new Map()
words.set("abc",10)
words.set("def",20)
words.set("ghi",30)
await generate(words, true, "wordcloud.png")
1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago