1.0.1 • Published 6 months ago

@shellicar/core-config v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

@shellicar/core-config

A library for securely handling sensitive configuration values like connection strings, URLs, and secrets.

npm package build status

Installation & Quick Start

npm i --save @shellicar/core-config
pnpm add @shellicar/core-config
import { SecureString, SecureConnectionString, SecureURL } from '@shellicar/core-config';

console.log(SecureString.from('myPassword123'));
console.log(SecureConnectionString.from('Server=myserver.uri;Password=myPassword123'));
console.log(SecureURL.from(new URL('http://myuser:myPassword123@myserver.uri')));

Documentation

For full documentation, visit here.

1.0.1

6 months ago

1.0.0

6 months ago

0.1.0

6 months ago