Socket
Socket
Sign inDemoInstall

string-sanitizer

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    string-sanitizer

An intuitive & tiny string sanitizer to remove any special characters or convert strings to create filename or url ๐ŸŽ‰๐ŸŽ‰


Version published
Weekly downloads
2.8K
increased by1.51%
Maintainers
1
Install size
17.3 kB
Created
Weekly downloads
ย 

Readme

Source

String Sanitizer

An intuitive & tiny string sanitizer to remove any special characters or convert strings to create filename or url. Validate email, password & username too. ๐ŸŽ‰๐ŸŽ‰

โœ… Update: 2.0.0 is launched with major updates. No breaking changes. Email, password and username validation is added. Everything is tested.

Use Case

Converting or sanitizing string is easier than ever with the help of this package. You can use this utility package to sanitize even foreign languages other than English. Under the hood, regex is heavily used in this library. You can convert your string to url or filename frindly string. Besides you can validate email, passwords and username too. ๐ŸŽ‰๐ŸŽ‰

Installation

You can download this package from here - string-sanitizer npm

npm i string-sanitizer

Yarn installation

yarn add string-sanitizer

Usage ๐Ÿ‘€๐Ÿ‘€๐Ÿ‘€

Just pass your string as the argument. The method will return a sanitized or converted string instantly.

var string = require("string-sanitizer");
let someString = "@abcde$f$gh";
string.sanitize(someString); // abcdefgh

Sanitization use cases

var string = require("string-sanitizer");

string.sanitize("a.bc@d efg#h"); // abcdefgh
string.sanitize.keepSpace("a.bc@d efg#h"); // abcd efgh
string.sanitize.keepUnicode("a.bc@d efg#hเฆ•"); // abcd efghเฆ•
string.sanitize.addFullstop("a.bc@d efg#h"); // abcd.efgh
string.sanitize.addUnderscore("a.bc@d efg#h"); // abcd_efgh
string.sanitize.addDash("a.bc@d efg#h"); // abcd-efgh
string.sanitize.removeNumber("@abcd efgh123"); // abcdefgh
string.sanitize.keepNumber("@abcd efgh123"); // abcdefgh123
string.addFullstop("abcd efgh"); // abcd.efgh
string.addUnderscore("@abcd efgh"); // @abcd_efgh
string.addDash("@abcd efgh"); // @abcd-efgh
string.removeSpace("@abcd efgh"); // @abcdefgh
string.removeUnderscore("@ab__cd ef_gh_"); // @abcd efgh

โœ… Screenshot

string-sanitizer

Validation ๐Ÿ‘€๐Ÿ‘€๐Ÿ‘€

Added in version 2.0.0

Most of the time we have to validate email, password and username in our codebase. So string sanitizer starts offering validation along with sanitization. You pass your user generated email, username or password in this method. If it passes the filter, it will return the string as it is. If it doesn't pass the filter, it will return false.

Email Validation โœ…

var string = require("string-sanitizer");

string.validate.isEmail("jhon@gmail.com") //  jhon@gmail.com
string.validate.isEmail("jhongmail.com") // false
string.validate.isEmail("jhon@gmailcom") // false
string.validate.isEmail("jhon@@gmail.com") // false

Username Validation โœ…

Username must be free from any special characters. There will be no space and must be at least 2 characters long. Combination of numbers and letters is acceptable. Only numbers (i.e 123) are not acceptable. But only letters (i.e ea) wil be acceptable.

var string = require("string-sanitizer");

string.validate.isUsername("fazlulka") // fazlulka
string.validate.isUsername("Fazlulka") //  fazlulka (Automatically lowerstring method applied.)
string.validate.isUsername("f") //  false (Minimum 2 letters)
string.validate.isUsername("123") //  false (Only number is not acceptable)
string.validate.isUsername("fazlulka@") //  false (Special Character not accpeted)
string.validate.isUsername("fazlulka_") // false (Special Character not accepted)

Why minimum 2 letters not 3 letters? Because some of the username like (@ea) is still most popular.

Why automatically lowerstring applied? Because, most of the end user still don't understand the meaning of username. Sometimes they use upper letter. We just sanitized it. Nothing more.

Password Validation โœ…

1. Most popular: To check a password between 6 to 15 characters which contain at least one numeric digit and a special character

string.validate.isPassword6to15("password1@") //  password1@
string.validate.isPassword6to15("password1") //  false

2. Most Secure: To check a password between 8 to 15 characters which contain at least one lowercase letter, one uppercase letter, one numeric digit, and one special character

string.validate.isPassword8to15("password1Aa_"); //  password1Aa_
string.validate.isPassword8to15("password1") // false

3. Simpler Password: To check a password between 6 to 20 characters which contain at least one numeric digit, one uppercase and one lowercase letter

string.validate.isPassword6to20("password1Aa"); //  password1Aa
string.validate.isPassword6to20("password1") // false

4. Easy Password: To check a password between 7 to 20 characters which contain only characters, numeric digits, underscore and first character must be a letter. No special character accepted here.

string.validate.isPassword7to20("password1") //  password1
string.validate.isPassword7to20("password1@_") //  false (No special character allowed)

Typescript compatitibility

Thanks to @kewitz for typescript compatibility

Thanks to @JohannesDev for removeUnderscore function

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate. ๐Ÿƒโ€๐Ÿƒโ€

License

MIT

Keywords

FAQs

Last updated on 20 Jun 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with โšก๏ธ by Socket Inc