{"id":45773333,"url":"https://github.com/18jad/enveg","last_synced_at":"2026-02-26T07:38:01.425Z","repository":{"id":64456902,"uuid":"575955340","full_name":"18jad/enveg","owner":"18jad","description":"Generate your .env example faster with 1 command","archived":false,"fork":false,"pushed_at":"2023-03-19T00:14:56.000Z","size":63,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-26T14:20:36.819Z","etag":null,"topics":["dotenv","dotenv-parser","env"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/18jad.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2022-12-08T17:14:35.000Z","updated_at":"2023-09-13T11:31:28.000Z","dependencies_parsed_at":"2023-12-30T00:23:25.458Z","dependency_job_id":"46758d67-bacc-4db6-bdb6-ee208e7b90a8","html_url":"https://github.com/18jad/enveg","commit_stats":{"total_commits":86,"total_committers":2,"mean_commits":43.0,"dds":0.08139534883720934,"last_synced_commit":"a3580574403719569f8b76c38b4c94b0c2461818"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/18jad/enveg","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/18jad%2Fenveg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/18jad%2Fenveg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/18jad%2Fenveg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/18jad%2Fenveg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/18jad","download_url":"https://codeload.github.com/18jad/enveg/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/18jad%2Fenveg/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29851611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T22:37:40.667Z","status":"online","status_checked_at":"2026-02-26T02:00:06.774Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dotenv","dotenv-parser","env"],"created_at":"2026-02-26T07:38:00.691Z","updated_at":"2026-02-26T07:38:01.421Z","avatar_url":"https://github.com/18jad.png","language":"TypeScript","readme":"# Enveg (Env Example Generator)\n\nGenerate your .env example faster and easier 🚀\n\n# Demo \n\n\u003cimg src=\"https://user-images.githubusercontent.com/74220144/206572108-a2378768-6a01-47bd-84b0-27fb454bcf25.gif\" width=\"100%\" /\u003e\n\n\u003ctable align=\"center\"\u003e\n\u003ctr\u003e\n\u003cth\u003eㅤㅤㅤㅤㅤㅤㅤㅤㅤ.envㅤㅤㅤㅤㅤㅤㅤㅤㅤ\u003c/th\u003e\n\u003cth\u003eㅤㅤㅤㅤㅤㅤ.env.example (after parsing)ㅤㅤㅤㅤㅤㅤ\u003c/th\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003e\n\n```env\n\n\n# VERSION 1 OF API KEY\nAPI_KEY_V1 = \"KEY_XXXX_XXX_XXX\"\n# VERSION 2 OF API KEY\nAPI_KEY_V2 = \"KEY2_XXXX_XXX_XXX\"\n\n# ONE COMMENT \n# DOUBLE COMMENT\n# TRIPLE COMMENT\nHOW_MANY_COMMENTS = 3\n\n@ignore\nIGNORE_ME = \"OKAY YOU ARE IGNORED\"\n\n\n```\n\n\u003c/td\u003e\n\u003ctd\u003e\n\n\n\n```env\n\n\n# VERSION 1 OF API KEY\nAPI_KEY_V1 = YOUR_API_KEY_V1 \n\n\n# VERSION 2 OF API KEY\nAPI_KEY_V2 = YOUR_API_KEY_V2 \n\n\n# ONE COMMENT \n# DOUBLE COMMENT\n# TRIPLE COMMENT\nHOW_MANY_COMMENTS = YOUR_HOW_MANY_COMMENTS\n```\n\n\n\n\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/table\u003e\n\nCommand used\n```\nenveg -c -l 2\n```\n\n# Installation\n\n```sh\n  npm i -g enveg\n```\n\n# Usage\n\n## Simple:\n```sh\n  # Open terminal in the desired directory and run:\n  enveg\n  # it will pick current directory .env and run with default options\n```\n\n## Advanced:\n```sh\n  # Open terminal in the desired directory and run:\n  enveg [options]\n  # e.g\n  enveg -c -p \"./config/.env\" -s DEMO_SLUG -l 2\n  \n  # to ignore a key add `@ignore` before it\n```\n\n# Options (optional)\n  - `-p` OR `--path` followed by the path of your .env file (relative or absolute path support), default is current terminal directory, it will pick the .env file in it if there's any.\n  - `-c` OR `--comments` to include comments, by default comments are removed after parsing\n  - `-e` OR `--empty` to replace values by empty space, by default values are replaced by `default_slug (YOUR) + key`\n  - `-s` OR `--slug` followed by the desired slug that you want to add to the value, default is `YOUR`\n  - `-l` OR `--linespace` followed by an integer indicating the line-breaks amount between each env variable, default is `1`\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F18jad%2Fenveg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F18jad%2Fenveg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F18jad%2Fenveg/lists"}