# ProcessEnv **Repository Path**: bugtree/ProcessEnv ## Basic Information - **Project Name**: ProcessEnv - **Description**: https://github.com/ChimeHQ/ProcessEnv.git - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-07 - **Last Updated**: 2025-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
[![Build Status][build status badge]][build status] [![Platforms][platforms badge]][platforms] [![Documentation][documentation badge]][documentation] [![Matrix][matrix badge]][matrix]
# ProcessEnv ProcessEnv is a small library for capturing a user's shell configuration. This is very handy for launching `Process` instances with the same configuration. It also contains a few niceties for working with `Process`. ## Integration Swift Package Manager: ```swift dependencies: [ .package(url: "https://github.com/ChimeHQ/ProcessEnv", branch: "main") ] ``` ## Extensions The bulk of code is in the form of extensions on `ProcessInfo`, for accessing various environment variables. A single `[String : String]` dictionary of the user's environment is available as the `userEnvironment` property. ```swift ProcessInfo.processInfo.userEnvironment ProcessInfo.processInfo.path // $PATH ProcessInfo.processInfo.homePath ProcessInfo.processInfo.shellExecutablePath ``` ## Contributing and Collaboration I would love to hear from you! Issues or pull requests work great. Both a [Matrix space][matrix] and [Discord][discord] are available for live help, but I have a strong bias towards answering in the form of documentation. You can also find me on [the web](https://www.massicotte.org). I prefer collaboration, and would love to find ways to work together if you have a similar project. I prefer indentation with tabs for improved accessibility. But, I'd rather you use the system you want and make a PR than hesitate because of whitespace. By participating in this project you agree to abide by the [Contributor Code of Conduct](CODE_OF_CONDUCT.md). [build status]: https://github.com/ChimeHQ/ProcessEnv/actions [build status badge]: https://github.com/ChimeHQ/ProcessEnv/workflows/CI/badge.svg [platforms]: https://swiftpackageindex.com/ChimeHQ/ProcessEnv [platforms badge]: https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FChimeHQ%2FProcessEnv%2Fbadge%3Ftype%3Dplatforms [documentation]: https://swiftpackageindex.com/ChimeHQ/ProcessEnv/main/documentation [documentation badge]: https://img.shields.io/badge/Documentation-DocC-blue [matrix]: https://matrix.to/#/%23chimehq%3Amatrix.org [matrix badge]: https://img.shields.io/matrix/chimehq%3Amatrix.org?label=Matrix [discord]: https://discord.gg/esFpX6sErJ