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 🙏

© 2025 – Pkg Stats / Ryan Hefner

thulejs-env

v1.0.5

Published

.env settings and distribution

Downloads

342

Readme

Managing environment variables and distribution.


ES6/Module styled, vanilla JavaScript .env settings and distribution.
Engine: Node.js

The why is power:
The first in a series of modules. Something profound here..

--with love, quirks and glitches, Idiosyncratics

Get thulejs-env

npm install thulejs-env

Consult the documentation
Docs can be found in the Git repository.

Usage
Add an .env file to your project root and define key and value pairs. These are space separated.

ENV_KEY: this_is_value

Import the module and add the config:

import env from 'thulejs-env';
env.init();

That's it!, your .env content is now available.

Get commands to view your env.

// get the configuration/
env.getMeta();

// get the env variables.
env.getEnv();

settings default
*By default the are variables are not checked in, meaning they can be altered or new pairs added.
Set the options as shown below to prevent this.

Note: This may break other modules if you freeze their assets.


Options and settings

const envOptions = {
  file: '.env',
  path: __dirname,
  strict: true,
  node_env: 'development',
  checkIn: true,
  processEnv: true,
  global: false,
  intrinsics: false
} 
env.init(envOptions);

// get the configuration
env.getMeta();

// get the env variables.
_env = env.getEnv();

var timezone = _env.NODE_TZ

// -or-

var timezone = env.getEnv('NODE_TZ')

strict: use-strict on all modules
checkIn: check-in of your env scope (cannot be checked out). Attempts to alter the env will return an error.
processEnv: check-in of your process.env scope (cannot be checked out).
global: check-in of your global scope (cannot be checked out).

intrinsics: "--frozen-intrinsics": JavaScript objects and functions are recursively frozen, except for globalThis. [Experimental] which means node team may take it out again.

Alternatively you can call options separately on a time of your choosing:

setEnv(key, value)
delEnv(key)
setCheckIn()
setStrict()
setProcessEnv()
setIntrinsics()
setGlobal()
setLockdown()

It's all thanks to you!

To all the patient people on forums and contributors helping curious and creative people solve their problems, one at a time, Thank you.