My FeedDiscussionsHeadless CMS
New
Sign in
Log inSign up
Learn more about Hashnode Headless CMSHashnode Headless CMS
Collaborate seamlessly with Hashnode Headless CMS for Enterprise.
Upgrade ✨Learn more

Would you like to participate in beta testing and review of a new JavaScript string library?

Deactivated User's photo
Deactivated User
·Dec 12, 2016

Hey guys,

After some months of hard work, I have reached recently the beta stage of a new JavaScript library to manipulate strings. The library is named Voca.

var v = require('voca');
v.camelCase('bird flight');              // => 'birdFlight'
v.sprintf('%s costs $%.2f', 'Tea', 1.5); // => 'Tea costs $1.50'
v.slugify('What a wonderful world');     // => 'what-a-wonderful-world'

The Voca library offers helpful functions to make string manipulations comfortable: change case, trim, pad, slugifly, latinise, sprintf'y, truncate, escape and much more. The modular design allows to load the entire library, or individual functions to minimize the application builds. The library is fully tested, well documented and long-term supported.

Check more details on:

The library is published on npm in beta version, so you can install it already:

npm install voca

I am planning to release soon the library into the wild. And I need some beta testing, reviews, opinions, etc. I want to make the library and documentation useful & comfortable for everyone.

If you're interested, please check it out and feel free to write your opinion in a comment below!