@thi.ng/dynvar

@thi.ng/dynvar

npm versionnpm downloads Mastodon Follow

[!NOTE] This is one of 190 standalone projects, maintained as part of the @thi.ng/umbrella monorepo and anti-framework.

🚀 Please help me to work full-time on these projects by sponsoring me on GitHub. Thank you! ❤️

About

Dynamically scoped variable bindings.

References:

Status

ALPHA - bleeding edge / work-in-progress

Search or submit any issues for this package

Installation

yarn add @thi.ng/dynvar

ES module import:

<script type="module" src="https://cdn.skypack.dev/@thi.ng/dynvar"></script>

Skypack documentation

For Node.js REPL:

const dynvar = await import("@thi.ng/dynvar");

Package sizes (brotli'd, pre-treeshake): ESM: 265 bytes

Dependencies

API

Generated API docs

TODO - See tests for usage...

Logging example

import { dynvar } from "@thi.ng/dynvar";
import { appendFileSync } from "fs";

interface Logger {
log(...args: any[]): void;
}

// create dynamically scoped variable
// set default/root binding
const logger = dynvar<Logger>(console);

// dummy function using `logger`
const foo = () => {
// deref() returns var's current value
logger.deref().log("begin foo...");
for (let i = 0; i < 5; i++) {
logger.deref().log(i);
}
logger.deref().log("foo done.");
};

foo();
// (output in console)
// begin foo...
// 0
// 1
// 2
// 3
// 4
// foo done.

// Alternative Logger impl
class FileLogger implements Logger {
constructor(protected path: string) {}

log(...args: any[]) {
appendFileSync(this.path, args.join(", ") + "\n");
}
}

// re-execute `foo` with temporary dynamic scope in which
// logger is bound to given new value (i.e. here file logger)
logger.withBinding(new FileLogger("./foo.txt"), foo);

// old scope again (back to using console)
logger.deref().log("good bye");
// "good bye"

Display log file contents:

cat foo.txt
# begin foo...
# 0
# 1
# 2
# 3
# 4
# foo done.

Authors

If this project contributes to an academic publication, please cite it as:

@misc{thing-dynvar,
title = "@thi.ng/dynvar",
author = "Karsten Schmidt",
note = "https://thi.ng/dynvar",
year = 2016
}

License

© 2016 - 2024 Karsten Schmidt // Apache License 2.0

Generated using TypeDoc