npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@architecturex/utils.security

v1.0.11

Published

## security

Downloads

44

Readme

@architecturex/utils.security

security

A utility library to aid in various common security-related tasks. This library includes functions for string sanitization, password validation, CSP generation, base64, data masking, and more.

Installation

npm install @architecturex/utils.security

Features

  • String Utilities: Generate random codes and sanitize input strings.
  • Base64 Encoding & Decoding: Convert data between Base64 and other formats.
  • Password Utilities: Includes validation, matching, and encryption.
  • CSP Generator: Helps in creating Content Security Policy directives.
  • Data Masking: Mask email, phone, and generic text to protect sensitive data.
  • String Sanitization: Protect your application against XSS attacks by sanitizing user input.
  • Type-based Validation: Check if the provided input matches the expected type such as string or number.
  • Empty Check: Quickly determine if a given input is empty.

Usage

import security from '@architecturex/utils.security'

String Utilities

Generate a random string:

security.string.code(10) // Outputs: 'A4D2efG7H8'

Input Utilities

Sanitize a string:

security.string.sanitize('<script>alert("hacked")</script>')
// Outputs: '&lt;script&gt;alert(&quot;hacked&quot;)&lt;/script&gt;'

Check if a value is string:

security.input.is('').string()

Check if a value is number

security.input.is(12345).number()

Check if a value is empty

security.input.is({ name: 'John' }).empty() // Outputs: false
security.input.is({}).empty() // Outputs: true
security.input.is([1, 2, 3]).empty() // Outputs: false
security.input.is([]).empty() // Outputs: true
security.input.is('Hello').empty() // Outputs: false
security.input.is('').empty() // Outputs: true

Base64 Encoding & Decoding

Encode a string or object to Base64:

security.base64.encode('Hello World') // Outputs: 'SGVsbG8gV29ybGQ='
security.base64.encode({ msg: 'Hello World' }) // Outputs: 'eyJtc2ciOiAiSGVsbG8gV29ybGQifQ=='

Decode from Base64:

security.base64.decode('SGVsbG8gV29ybGQ=') // Outputs: 'Hello World'

Password Utilities

Validate a password:

security.password.validation('Passw0rd!', { length: 8, special: true })
// Outputs: { isValid: true, reasons: [] }

Check if passwords match and are valid:

security.password.match('Passw0rd!', 'Passw0rd!') // Outputs: true

Encrypt a password:

security.password.encrypt('password') // Outputs: 'sha1 hash'

CSP Generator

Generate a Content Security Policy:

const config = {
  'default-src': ["'self'", 'cdn.example.com'],
  'script-src': ["'self'", 'scripts.example.com']
}
security.csp.generator(config)
// Outputs: "default-src 'self' cdn.example.com; script-src 'self' scripts.example.com"

Data Masking

Mask an email:

security.mask.email('[email protected]') // Outputs: 'tes*****@ex*****.com'

Mask a phone number:

security.mask.phone('1234567890') // Outputs: 'xxxxx67890'

Mask text:

security.mask.text('testingtesting', 2, 2) // Outputs: 'te*******ng'

Contribution

Feel free to suggest improvements, report issues, or contribute to enhancing these utilities. Your feedback and contributions are welcome!