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

env-sanitize

v2.0.0

Published

Sanitization and verification of environment variables with typescript support.

Downloads

120

Readme

env-sanitize 🧹

PRs Welcome NPM version
Sanitization and verification of environment variables with typescript support.

Installation

npm

npm install env-sanitize

yarn

yarn add env-sanitize

Example

import env from "env-sanitize";
// or const env = require('env-sanitize');

// If not exists, throw.
const env_region = env("AWS_REGION");

// use default if not exists.
const env_server_url = env("SERVER_URL", "localhost");

// get MAX_CONNECTIONS env, and transform it to int.
// throw if its not a number or not exists.
const env_max_connections = env("MAX_CONNECTIONS", (x) => x.asInt());

// get PORT env, and transform it to number in port range.
// throw if its out of the range.
// return default if not exists.
const env_port = env("PORT", (x) => x.asPort(), 4000);

// We can chain the Sanitizers.
const env_key = env("STRING_KEY", (x) =>
  x
    .asLowerCase()
    .asEnum(["one", "two"])
    .transform((v) => (v === "one" ? 1 : 2))
);

Sanitizers

required

const env_required = env("REQUIRED_KEY");

with default

const env_key = env("OPTIONAL_KEY", "default");

asInt

const env_key = env("INT_KEY", (x) => x.asInt());

asFloat

const env_key = env("FLOAT_KEY", (x) => x.asFloat());

greater

const env_float_key = env("FLOAT_KEY", (x) => x.greater(1));
const env_int_key = env("INT_KEY", (x) => x.asInt().greater(1));

greaterOrEqual

const env_float_key = env("FLOAT_KEY", (x) => x.greaterOrEqual(1));
const env_int_key = env("INT_KEY", (x) => x.asInt().greaterOrEqual(1));

less

const env_float_key = env("FLOAT_KEY", (x) => x.less(9));
const env_int_key = env("INT_KEY", (x) => x.asInt().less(9));

lessOrEqual

const env_float_key = env("FLOAT_KEY", (x) => x.lessOrEqual(9));
const env_int_key = env("INT_KEY", (x) => x.asInt().lessOrEqual(9));

asBoolean

const env_key = env("BOOLEAN_KEY", (x) => x.asBoolean());

asEnum

const env_key = env("ENUM_KEY", (x) => x.asEnum(["option1", "option2"]));

asRegex

const env_key = env("ONLY_NUMBERS_KEY", (x) => x.asRegex(/^[0-9]*$/g));

asPort

const env_key = env("INT_KEY", (x) => x.asPort());

asJson

const env_key = env("JSON_KEY", (x) => x.asJson());

asJsonArray

const env_key = env("JSON_ARRAY_KEY", (x) => x.asJsonArray());

asLowerCase

const env_key = env("STRING_KEY", (x) => x.asLowerCase());

asUpperCase

const env_key = env("STRING_KEY", (x) => x.asUpperCase());

assert

const env_key = env("STRING_KEY", (x) =>
  x.assert(
    (v) => v === "foo",
    (v) => `${v} is not foo.` // The message to throw.
  )
);

transform

const env_key = env("STRING_KEY", (x) => x.transform((v) => v.toString().toLowerCase()););