This is the Flog standard library.
Console std/console
Implementation of WHATWG Console API.
Crypto std/crypto
Implementation of W3C Web Cryptography API.
Dyndef std/dyndef
Dynamic defensive programming as per own API.
FS std/fs
Filesystem operations as per own API.
Functional std/function
Functional programming as per own API.
HTTP std/http
Implementation of a superset of WHATWG Fetch API.
Math std/math
Mathematical operations as per own API.
Streams std/streams
Implementation of WHATWG Streams API.
Runtime compat is a Flog standard library implementation for NodeJS. It is
available on NPM as the runtime-compat
package, and its exports correspond
to Flog standard library modules, allowing for code reuse on both runtimes.
import {serve, Response} from "std/http";
serve(() => new Response("plain text", {status: 200}))
import {serve, Response} from "runtime-compat/http";
serve(() => new Response("plain text", {status: 200}))