word-character-count

Word and character count from html5 string.

Usage no npm install needed!

<script type="module">
  import wordCharacterCount from 'https://cdn.skypack.dev/word-character-count';
</script>

README

Word and character count from html5 string.

Why this package?

Word and character count is a promise based function.

Installing

using npm

npm install word-character-count

using yarn

yarn add word-character-count

Usage

const wordCount = require("word-character-count");

const result = await wordCount.WordCount("<p>This endpoint works!</p>");

Return object

It returns JSON object as promise.

example:

result = {
    CharacterCount: 20,
    WordCount: 3,
    words: "This endpoint works!"
};

where WordCount and CharacterCount are both number dataType.