
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
word-counting
Advanced tools
A very powerful words counter that supports plain text and html.
# Using npm
npm install --save word-counting
# Using yarn
yarn add word-counting
Inject the library in your file:
// javascript
var wordsCounter = require('word-counting')
// typescript
import wordsCounter from 'word-counting'
Count the words for plain text:
const mockedText = 'These are some mocked words.'
console.log(wordsCounter(mockedText).wordsCount) // 5
Count the words for html:
const mockedText = '<p>These are some mocked words with html format</p>'
console.log(wordsCounter(mockedText, { isHtml: true }).wordsCount) // 8
git checkout -b feature/fooBar)git commit -am 'Add some fooBar')git push origin feature/fooBar)Max Liu 💻 📖 🚇 ⚠️ |
|---|
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
A very powerful words counter that supports plain text and html.
The npm package word-counting receives a total of 331 weekly downloads. As such, word-counting popularity was classified as not popular.
We found that word-counting demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.