From 4a24b7df65b943bca490b726a7f1b32c2eec4126 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sun, 14 Apr 2024 17:16:43 +0200 Subject: [PATCH] update tsconfig --- npmextra.json | 15 ++++- package.json | 14 +++-- readme.hints.md | 1 + readme.md | 159 +++++++++++++++++++++++++++++++++++------------- 4 files changed, 138 insertions(+), 51 deletions(-) create mode 100644 readme.hints.md diff --git a/npmextra.json b/npmextra.json index 64ab22a..ac0e9d9 100644 --- a/npmextra.json +++ b/npmextra.json @@ -9,12 +9,21 @@ "githost": "code.foss.global", "gitscope": "push.rocks", "gitrepo": "qenv", - "description": "easy promised environments", + "description": "A module for easily handling environment variables in Node.js projects with support for .yml and .json configuration.", "npmPackagename": "@push.rocks/qenv", - "license": "MIT" + "license": "MIT", + "keywords": [ + "environment variables", + "configuration management", + "Node.js", + "TypeScript", + "Docker secrets", + "CI/CD", + "testing" + ] } }, - "tsdocs": { + "tsdoc": { "legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n" } } \ No newline at end of file diff --git a/package.json b/package.json index 1292308..412da80 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@push.rocks/qenv", "version": "6.0.5", "private": false, - "description": "easy promised environments", + "description": "A module for easily handling environment variables in Node.js projects with support for .yml and .json configuration.", "main": "dist_ts/index.js", "typings": "dist_ts/index.d.ts", "type": "module", @@ -16,9 +16,13 @@ "url": "git+ssh://git@gitlab.com/pushrocks/qenv.git" }, "keywords": [ - "environment", - "git", - "ci" + "environment variables", + "configuration management", + "Node.js", + "TypeScript", + "Docker secrets", + "CI/CD", + "testing" ], "author": "Lossless GmbH", "license": "MIT", @@ -55,4 +59,4 @@ "browserslist": [ "last 1 chrome versions" ] -} +} \ No newline at end of file diff --git a/readme.hints.md b/readme.hints.md new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/readme.hints.md @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/readme.md b/readme.md index 28209b8..bb3e761 100644 --- a/readme.md +++ b/readme.md @@ -1,52 +1,125 @@ # @push.rocks/qenv easy promised environments -## Availabililty and Links -* [npmjs.org (npm package)](https://www.npmjs.com/package/@push.rocks/qenv) -* [gitlab.com (source)](https://gitlab.com/push.rocks/qenv) -* [github.com (source mirror)](https://github.com/push.rocks/qenv) -* [docs (typedoc)](https://push.rocks.gitlab.io/qenv/) +## Install +To install `@push.rocks/qenv`, you need to have Node.js installed on your system. Once Node.js is installed, you can add `@push.rocks/qenv` to your project by running the following command in your project's root directory: -## Status for master - -Status Category | Status Badge --- | -- -GitLab Pipelines | [![pipeline status](https://gitlab.com/push.rocks/qenv/badges/master/pipeline.svg)](https://lossless.cloud) -GitLab Pipline Test Coverage | [![coverage report](https://gitlab.com/push.rocks/qenv/badges/master/coverage.svg)](https://lossless.cloud) -npm | [![npm downloads per month](https://badgen.net/npm/dy/@push.rocks/qenv)](https://lossless.cloud) -Snyk | [![Known Vulnerabilities](https://badgen.net/snyk/push.rocks/qenv)](https://lossless.cloud) -TypeScript Support | [![TypeScript](https://badgen.net/badge/TypeScript/>=%203.x/blue?icon=typescript)](https://lossless.cloud) -node Support | [![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/) -Code Style | [![Code Style](https://badgen.net/badge/style/prettier/purple)](https://lossless.cloud) -PackagePhobia (total standalone install weight) | [![PackagePhobia](https://badgen.net/packagephobia/install/@push.rocks/qenv)](https://lossless.cloud) -PackagePhobia (package size on registry) | [![PackagePhobia](https://badgen.net/packagephobia/publish/@push.rocks/qenv)](https://lossless.cloud) -BundlePhobia (total size when bundled) | [![BundlePhobia](https://badgen.net/bundlephobia/minzip/@push.rocks/qenv)](https://lossless.cloud) - -## Usage - -Use TypeScript for best in class instellisense. - -qenv works with two files: - -- **qenv.yml** - specifies which ENV vars are required. -- **env.yml** - specifies all env vars that are not already set in the current environment. - -Now obviously you can set build specific env vars in many CI environments. -So there we do not need an **env.yml** since all ENV vars are in place -However when on another machine you can have a env.yml that will be added to the environment by qenv. - -```javascript -import { Qenv } from 'qenv'; - -const myQenv = new Qenv('path/to/dir/where/qenv.yml/is/', 'path/to/dir/where/env.yml/is('); +```bash +npm install @push.rocks/qenv --save ``` -## Contribution +This command will add `@push.rocks/qenv` as a dependency to your project, and you will be ready to use it in your application. -We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :) +## Usage +`@push.rocks/qenv` provides a convenient way to manage and access environment variables in your Node.js projects, especially when dealing with different environments like development, testing, and production. Its primary use is to load environment-specific variables in an easy and organized manner. Below is an extensive guide on how to use this module effectively in various scenarios, ensuring you can handle environment variables efficiently in your projects. -For further information read the linked docs at the top of this readme. +### Getting Started +First, ensure you have TypeScript configured in your project. `@push.rocks/qenv` is fully typed, providing excellent IntelliSense support when working in editors that support TypeScript, such as Visual Studio Code. -## Legal -> MIT licensed | **©** [Task Venture Capital GmbH](https://task.vc) -| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy) +#### Importing Qenv +To get started, import the `Qenv` class from `@push.rocks/qenv`: + +```typescript +import { Qenv } from '@push.rocks/qenv'; +``` + +#### Basic Configuration +`@push.rocks/qenv` works with two main files: `qenv.yml` for specifying required environment variables, and `env.yml` for specifying values for these variables. These files should be placed in your project directory. + +##### qenv.yml +This file specifies the environment variables that are required by your application. An example `qenv.yml` might look like this: + +```yaml +required: + - DB_HOST + - DB_USER + - DB_PASS +``` + +##### env.yml +This file contains the actual values for the environment variables in a development or testing environment. An example `env.yml` could be: + +```yaml +DB_HOST: localhost +DB_USER: user +DB_PASS: pass +``` + +#### Instantiating Qenv +Create an instance of `Qenv` by providing paths to the directories containing the `qenv.yml` and `env.yml` files, respectively: + +```typescript +const myQenv = new Qenv('./path/to/dir/with/qenv', './path/to/dir/with/env'); +``` + +If the `env.yml` file is in the same directory as `qenv.yml`, you can omit the second argument: + +```typescript +const myQenv = new Qenv('./path/to/dir/with/both'); +``` + +#### Accessing Environment Variables +After instantiating `Qenv`, you can access the loaded environment variables directly from `process.env` in Node.js or through the `myQenv` instance for more complex scenarios like asynchronous variable resolution: + +```typescript +// Accessing directly via process.env +console.log(process.env.DB_HOST); // 'localhost' in development environment + +// Accessing via Qenv instance for more advanced scenarios +(async () => { + const dbHost = await myQenv.getEnvVarOnDemand('DB_HOST'); + console.log(dbHost); // 'localhost' +})(); +``` + +### Advanced Usage +#### Handling Missing Variables +By default, `Qenv` will throw an error and exit if any of the required environment variables specified in `qenv.yml` are missing. You can disable this behavior by passing `false` as the third argument to the constructor, which allows your application to handle missing variables gracefully: + +```typescript +const myQenv = new Qenv('./path/to/dir/with/qenv', './path/to/dir/with/env', false); +``` + +#### Dynamic Environment Variables +For dynamic or computed environment variables, you can define functions that resolve these variables asynchronously. This is particularly useful for variables that require fetching from an external source: + +```typescript +// Define a function to fetch a variable +const fetchDbHost = async () => { + // Logic to fetch DB_HOST from an external service + return 'dynamic.host'; +}; + +// Use the function with getEnvVarOnDemand +(async () => { + const dbHost = await myQenv.getEnvVarOnDemand(fetchDbHost); + console.log(dbHost); // 'dynamic.host' +})(); +``` + +#### Reading Variables from Docker Secrets or Other Sources +Internally, `@push.rocks/qenv` supports reading from Docker secrets, providing flexibility for applications deployed in Docker environments. The module attempts to read each required variable from the process environment, a provided `env.yml` file, Docker secrets, or any custom source you integrate. + +### Conclusion +`@push.rocks/qenv` simplifies handling environment variables across different environments, making your application's configuration more manageable and secure. By separating variable definitions from their values and providing support for dynamic resolution, `@push.rocks/qenv` offers a robust solution for managing configuration in Node.js projects. Whether you're working in a local development environment, CI/CD pipelines, or production, `@push.rocks/qenv` ensures that you have the correct configuration for the task at hand. + +Note: Due to the complexity and depth of `@push.rocks/qenv`, this documentation aims to cover general and advanced usage comprehensively. Please refer to the module's official documentation and typed definitions for further details on specific features or configuration options. + +## License and Legal Information + +This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. + +**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file. + +### Trademarks + +This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH. + +### Company Information + +Task Venture Capital GmbH +Registered at District court Bremen HRB 35230 HB, Germany + +For any legal inquiries or if you require further information, please contact us via email at hello@task.vc. + +By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.