zerodep is a CommonJS collection of dependency-free utilities for shared JavaScript, browser, and Node.js environments. The package includes data and encoding functions, DOM helpers, filesystem operations, recursive loaders, an action dispatcher, and a command executor.
The documentation describes the implementation shipped by the selected package release. The project does not yet declare supported Node.js or browser versions, and it has no test suite. Treat behavior identified as defective or unverified accordingly.
Install an exact version because the package changes frequently:
npm i -E zerodepThe package currently has no working root entry point: package.json declares index.js, but that file does not exist. Import an explicit CommonJS subpath instead.
| Entry point | Responsibility |
|---|---|
zerodep/js/fn |
84 environment-neutral utility exports |
zerodep/browser/fn |
All common functions plus browser and DOM helpers |
zerodep/node/fn |
All common functions plus password and legacy Base64 helpers |
zerodep/node/fs |
Synchronous filesystem/path helpers, downloads, and watchers |
zerodep/node/load |
Generic recursive directory loader |
zerodep/node/load/js |
Recursive CommonJS-compatible module loader |
zerodep/node/load/json |
Recursive JSON loader with key rewriting |
zerodep/node/load/json/prefixObjectProtoKeys |
JSON reviver used by the JSON loader |
zerodep/node/access |
Builds an object access point from nested modules |
zerodep/node/action |
Immediately dispatches an action from command-line arguments |
zerodep/node/exec |
Executes a shell command and resolves with its exit code |
const fn = require('zerodep/js/fn');
console.log(fn.uniqueArray([1, 1, 2]));
// [1, 2]const nodeFn = require('zerodep/node/fn');
const fileSystem = require('zerodep/node/fs');Some functions call sibling exports through this. Invoke those functions as methods of the imported namespace unless their reference explicitly says otherwise:
const fn = require('zerodep/js/fn');
const value = fn.clone(source, 'nested', 'key');- Common functions
- Browser functions
- Node functions
- Filesystem and path functions
- Loaders and access points
- Action dispatch and command execution
- Known defects and operational risks
The references cover every current export. They describe observed source behavior rather than a compatibility guarantee. Functions may return different absence indicators (false, null, or undefined), mutate supplied values, log and suppress errors, or rely on host globals; consult each entry before use.
Several modules can execute commands, load code, download remote content, mutate the process working directory, overwrite or recursively remove files, and create symbolic links. Validate all paths, URLs, module trees, and command arguments before invoking them. Do not pass untrusted input to node/action, node/exec, recursive loaders, or mutating filesystem helpers.
No tests or test scripts are currently tracked. The documented results were derived from source inspection, limited export enumeration, and direct confirmation of the missing root entry point and treeViewArray failure.
Supported Node.js releases and browser baselines are intentionally unspecified pending a project revision. The implementation uses features including CommonJS, BigInt, URL, TextEncoder, TextDecoder, fetch, replaceAll, DOM APIs, and Node.js built-ins; availability depends on the selected entry point and runtime.
Validate documentation coverage with:
npm run check:docsAPI stability and deprecation policy are not yet defined. The -E installation option records the resolved release as an exact dependency; review source and release changes before upgrading.