Comparing version 0.1.2 to 0.1.3
@@ -0,0 +0,0 @@ { |
{ | ||
"name": "stringman", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Stringman does a lot of the slightly unusual string manipulation and regex operations for you.", | ||
@@ -43,2 +43,2 @@ "main": "lib/index.js", | ||
} | ||
} | ||
} |
# Stringman | ||
Stringman is in the very early stages right now and I am still figuring out how I want to structure this and what functionality to include. The idea behind this library is to provide a simple way to do common string manipulation and regular expression matching/testing on strings in the fastest and simplest way possible. Examples of the type of functionality include (but are not limited to): | ||
Stringman (short for "string manipulator") aims to make some of the common types of string manipulation easier. Most of the functionality contained within Stringman isn't particularly difficult to write, but the value it provides lies within the fact that Stringman has an ever-growing collection of functionality that will save you time and headaches. A lot of the typical regular expression scenarios that JavaScript developers encounter are covered here. | ||
Stringman is in the very early stages right now and I am still figuring out how I want to structure this and what functionality to include. Examples of the type of functionality include (but are not limited to): | ||
- validate whether string is url | ||
- return text from inside of parenthesis | ||
- validate whether string is a valid semantic version | ||
- remove an email address from a string | ||
- much more | ||
I will be adding to this as I have a chance and will publish to npm soon. In the meantime, you can check out the [documentation](https://jgdigitaljedi.github.io/stringman/) and tinker around if you want! | ||
Also, typescript types are included. | ||
## Install | ||
``` | ||
npm i -S stringman | ||
``` | ||
## Documentation | ||
[https://jgdigitaljedi.github.io/stringman/](https://jgdigitaljedi.github.io/stringman/) | ||
## Contributing | ||
I haven't though too much about this yet as the project is very young. Just contact me if you are interested in contributing. |
7093
25