0.0.1 • Published 8 years ago

regex-safer v0.0.1

Weekly downloads
6
License
GPL-3.0
Repository
github
Last release
8 years ago

regex-safer

NPM version Linux Status Windows Status Dependency Status Coveralls

Detect possibly exponential-time regular expressions, thanks to safe-regex with cli support

Dev Installation

Install through NPM

npm install regex-safer

or

git clone git://github.com/hex7c0/regex-safer.git

API

inside nodejs project

var safe = require('regex-safer');

safe('(a+){2}y');

safe(regex , exception)

options

  • regex - String RegExp source that you want to check (required)
  • exception- Boolean Raise Exception if True or return Boolean value (default "raise")

Console Installation

Install through NPM

npm install -g regex-safer

API

global cli with -g option

$ regex-safer -h

Usage:
  regex-safer [OPTIONS] [ARGS]

Options: 
  -v, --version          Display the current version
  -h, --help             Display help and usage details

Examples

Take a look at my examples

License GPLv3