Implements Phases 1-8 of the TFTSR implementation plan. Rust backend (Tauri 2.x, src-tauri/): - Multi-provider AI: OpenAI-compatible, Anthropic, Gemini, Mistral, Ollama - PII detection engine: 11 regex patterns with overlap resolution - SQLCipher AES-256 encrypted database with 10 versioned migrations - 28 Tauri IPC commands for triage, analysis, document, and system ops - Ollama: hardware probe, model recommendations, pull/delete with events - RCA and blameless post-mortem Markdown document generators - PDF export via printpdf - Audit log: SHA-256 hash of every external data send - Integration stubs for Confluence, ServiceNow, Azure DevOps (v0.2) Frontend (React 18 + TypeScript + Vite, src/): - 9 pages: full triage workflow NewIssue→LogUpload→Triage→Resolution→RCA→Postmortem→History+Settings - 7 components: ChatWindow, TriageProgress, PiiDiffViewer, DocEditor, HardwareReport, ModelSelector, UI primitives - 3 Zustand stores: session, settings (persisted), history - Type-safe tauriCommands.ts matching Rust backend types exactly - 8 IT domain system prompts (Linux, Windows, Network, K8s, DB, Virt, HW, Obs) DevOps: - .woodpecker/test.yml: rustfmt, clippy, cargo test, tsc, vitest on every push - .woodpecker/release.yml: linux/amd64 + linux/arm64 builds, Gogs release upload Verified: - cargo check: zero errors - tsc --noEmit: zero errors - vitest run: 13/13 unit tests passing Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
119 lines
2.6 KiB
Markdown
119 lines
2.6 KiB
Markdown
# std-env
|
|
|
|
[](http://npmjs.com/package/std-env)
|
|
[](http://npmjs.com/package/std-env)
|
|
[](https://bundlephobia.com/result?p=std-env)
|
|
|
|
> Runtime agnostic JS utils
|
|
|
|
## Installation
|
|
|
|
```sh
|
|
# Using npm
|
|
npm i std-env
|
|
|
|
# Using pnpm
|
|
pnpm i std-env
|
|
|
|
# Using yarn
|
|
yarn add std-env
|
|
```
|
|
|
|
## Usage
|
|
|
|
```js
|
|
// ESM
|
|
import { env, isDevelopment, isProduction } from "std-env";
|
|
|
|
// CommonJS
|
|
const { env, isDevelopment, isProduction } = require("std-env");
|
|
```
|
|
|
|
## Flags
|
|
|
|
- `hasTTY`
|
|
- `hasWindow`
|
|
- `isDebug`
|
|
- `isDevelopment`
|
|
- `isLinux`
|
|
- `isMacOS`
|
|
- `isMinimal`
|
|
- `isProduction`
|
|
- `isTest`
|
|
- `isWindows`
|
|
- `platform`
|
|
- `isColorSupported`
|
|
- `nodeVersion`
|
|
- `nodeMajorVersion`
|
|
|
|
You can read more about how each flag works from [./src/flags.ts](./src/flags.ts).
|
|
|
|
## Provider Detection
|
|
|
|
`std-env` can automatically detect the current runtime provider based on environment variables.
|
|
|
|
You can use `isCI` and `platform` exports to detect it:
|
|
|
|
```ts
|
|
import { isCI, provider, providerInfo } from "std-env";
|
|
|
|
console.log({
|
|
isCI, // true
|
|
provider, // "github_actions"
|
|
providerInfo, // { name: "github_actions", isCI: true }
|
|
});
|
|
```
|
|
|
|
List of well known providers can be found from [./src/providers.ts](./src/providers.ts).
|
|
|
|
## Runtime Detection
|
|
|
|
`std-env` can automatically detect the current JavaScript runtime based on global variables, following the [WinterCG Runtime Keys proposal](https://runtime-keys.proposal.wintercg.org/):
|
|
|
|
```ts
|
|
import { runtime, runtimeInfo } from "std-env";
|
|
|
|
// "" | "node" | "deno" | "bun" | "workerd" ...
|
|
console.log(runtime);
|
|
|
|
// { name: "node" }
|
|
console.log(runtimeInfo);
|
|
```
|
|
|
|
You can also use individual named exports for each runtime detection:
|
|
|
|
> [!NOTE]
|
|
> When running code in Bun and Deno with Node.js compatibility mode, `isNode` flag will be also `true`, indicating running in a Node.js compatible runtime.
|
|
>
|
|
> Use `runtime === "node"` if you need strict check for Node.js runtime.
|
|
|
|
- `isNode`
|
|
- `isBun`
|
|
- `isDeno`
|
|
- `isNetlify`
|
|
- `isEdgeLight`
|
|
- `isWorkerd`
|
|
- `isFastly`
|
|
|
|
List of well known providers can be found from [./src/runtimes.ts](./src/runtimes.ts).
|
|
|
|
## Platform-Agnostic `env`
|
|
|
|
`std-env` provides a lightweight proxy to access environment variables in a platform agnostic way.
|
|
|
|
```ts
|
|
import { env } from "std-env";
|
|
```
|
|
|
|
## Platform-Agnostic `process`
|
|
|
|
`std-env` provides a lightweight proxy to access [`process`](https://nodejs.org/api/process.html) object in a platform agnostic way.
|
|
|
|
```ts
|
|
import { process } from "std-env";
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|