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 🙏

© 2026 – Pkg Stats / Ryan Hefner

dotenv-reader

v1.0.1-b

Published

a simple and lightweight module to populate process.env from a .env file

Readme

DotEnv-Reader - D.E.R.

a simple, lightweight and zero-dependency package to populate process.env using a .env file

NPM version LICENSE

How to install

you can install the package running the following command:

# for npm
npm i dotenv-reader

# for yarn
yarn add dotenv-reader

How to use

At the start of your main file require and init the module

require("dotenv-reader").init();

You must create a .env file in the root folder of your project, then, add a key and a value, ONLY ONE PER LINE, in this format: KEY=VALUE.

For example:

PORT=3000
DB_HOST=localhost
DB_USERNAME="main"

you can use or not the quotation marks.

Now you can just use process.env.key like this.

console.log(process.env.PORT);
console.log(process.env.DB_HOST);
console.log(process.env.DB_USERNAME);

// Output 3000, localhost, main

Init

init will search and read your .env file, then parse it and populate it to process.env, and return and object with an error key if failed.

const result = der.init();

if (result.error) throw result.error;

Params

pathLike

Default: path.resolve(process.cwd(), '.env')

you can specify a custom path if your .env file is not in the root folder of the project

encoding

The encoding for the .env file, by default is "utf-8"

logging

Default: False You can turn on logging to help debug

CastToObj

params

logging

Default: False You can turn on logging to help debug