aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/std-env/README.md
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
commitafa87af01c79a9baa539f2992d32154d2a4739bd (patch)
tree92c7416db734270a2fee1d72ee9cc119379ff8e1 /vanilla/node_modules/std-env/README.md
parent3b927e84d200402281f68181cd4253bc77e5528d (diff)
downloadneko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip
task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq
Diffstat (limited to 'vanilla/node_modules/std-env/README.md')
-rw-r--r--vanilla/node_modules/std-env/README.md118
1 files changed, 0 insertions, 118 deletions
diff --git a/vanilla/node_modules/std-env/README.md b/vanilla/node_modules/std-env/README.md
deleted file mode 100644
index 7ed80fe..0000000
--- a/vanilla/node_modules/std-env/README.md
+++ /dev/null
@@ -1,118 +0,0 @@
-# std-env
-
-[![npm](https://img.shields.io/npm/dm/std-env.svg?style=flat-square)](http://npmjs.com/package/std-env)
-[![npm](https://img.shields.io/npm/v/std-env.svg?style=flat-square)](http://npmjs.com/package/std-env)
-[![bundlephobia](https://img.shields.io/bundlephobia/min/std-env/latest.svg?style=flat-square)](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