
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.
A collection of Javascript utilities to streamline development.
Site | NPM Module | GitHub Repo
In a browser:
<script src="itwcw-lib.js"></script>
Using npm:
$ npm i itwcw-lib
Note: add --save if you are using npm < 5.0.0
In Node.js:
// Load the full build.
var itwcwlib = require('itwcw-lib');
var numberOfCats = 1;
var numberOfDogs = 2;
console.log('I have ' + numberOfCats + itwcwlib.addPlural('cat', numberOfCats)) // I have 1 cat
console.log('I have ' + numberOfDogs + itwcwlib.addPlural('dog', numberOfDogs)) // I have 2 dogs
console.log('I have ' + itwcwlib.addArticle('dog')) // I have a dog
console.log('I have ' + itwcwlib.addArticle('animal')) // I have an animal
console.log(itwcwlib.roundToNearest(10, 10)) // 10
console.log(itwcwlib.roundToNearest(11, 10)) // 10
console.log(itwcwlib.roundToNearest(15, 10)) // 20
console.log(itwcwlib.roundToNearest(19, 10)) // 20
var jonSnow = {
first_name: 'Jon',
last_name: 'Snow',
}
console.log(itwcwlib.objectLength(jonSnow)) // 2
var n1 = '9'
var n2 = '99'
var n3 = '999'
console.log(itwcwlib.zeroFill(n1, 3)) // 009
console.log(itwcwlib.zeroFill(n2, 3)) // 099
console.log(itwcwlib.zeroFill(n3, 3)) // 999
itwcw-lib makes JavaScript easier by taking the hassle out of working with common issues such as finding days between dates, determining object length, and figuring out whether to add an 's' to something if it's plural.
Somiibo: A Social Media Bot with an open-source module library.
JekyllUp: A website devoted to sharing the best Jekyll themes.
Slapform: A backend processor for your HTML forms on static sites.
SoundGrail Music App: A resource for producers, musicians, and DJs.
Hammock Report: An API for exploring and listing backyard products.
Leechii: A Telegram bot to manage your engagement groups.
Rankiir: A keyword tracker for search engines.
Keywordii: A keyword tracker for search engines.
Socialetto: A social media influencer search engine.
FAQs
Collection of useful functions for streamlined development.
We found that itwcw-lib 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.