1.0.1 • Published 6 months ago
@shellicar/core-config v1.0.1
@shellicar/core-config
A library for securely handling sensitive configuration values like connection strings, URLs, and secrets.
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.