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

@diotoborg/corporis-labore

v6.9.77

Published

![TS](https://github.com/diotoborg/corporis-labore/assets/26823527/26ee1543-46fa-43f0-a844-0e27ac1c476a)

Downloads

2,087

Readme

ts-env

TS

npm version

A typescript environment file management tool

Motivation

The availability of node can run on different enviroments allow us to use the same codebase for different platforms. However, the different enviroments may have different config files formats. There are some tools like dotenv, dotenv-yaml, to help us load the config files. However, they are not flexible enough to support different config files formats.

Installation

#NPM
npm install @diotoborg/corporis-labore

#Yarn
yarn add @diotoborg/corporis-labore

Usage

You can use ts-env as a module to load the config files. The config files will be loaded when you import the module.

import { tsEnv } from '@diotoborg/corporis-labore';

tsEnv({}) // load the config files

Config Interface

The Config interface defines the structure for configuration options used in our application. Below are the details of each property within this interface.

Properties

path (optional)

  • Type: string
  • Description: Specifies the file path for the configuration. If not provided, the default path will be used.

encoding (optional)

  • Type: BufferEncoding
  • Description: Defines the character encoding to be used. This must be a valid BufferEncoding type (e.g., 'utf8', 'ascii', 'base64', etc.). If not specified, the default encoding is 'utf8'.

type (optional)

  • Type: ConfigType
  • Description: Specifies the type of configuration. This is an enumerated value (ConfigType) that should be defined elsewhere in the codebase. It indicates the specific configuration format or category being used.

writeTypes (optional)

  • Type: boolean
  • Description: A flag indicating whether to write type definitions. If set to true, type definitions will be included in the output. The default value is false.
  • Default: YAML valid values are JSON, YAML, ENV

Example

Here is an example of how the Config interface can be used:

const config: Config = {
  path: './config.json',
  encoding: 'utf8',
  type: ConfigType.JSON,
  writeTypes: true
};

Roadmap

  • [x] Support .env file
  • [x] Support .env.yaml file
  • [x] Support .env.json file
  • [x] Export types
  • [ ] Fix Release pipelines
  • [ ] Support multi-environment
  • [ ] Check valid format files
  • [ ] Support pre-load script