Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/starfx/scripts/deps.ts

A micro-mvc framework for react apps
Latest
import * as starfx from "https://deno.land/x/starfx@v0.13.4/scripts/deps.ts";

Functions

Pause the current operation, then runs a promise, async function, plain function, or operation within a new scope. The calling operation will be resumed (or errored) once call is completed.

Top-level entry point to programs written in Effection. That means that your program should only call main once, and everything the program does is handled from within main including an orderly shutdown. Unlike run, main automatically prints errors that occurred to the console.

Interfaces

An Operation in Effection describes an abstract computation. An operation does not do anything on its own. Rather, it only describes the steps it will take when it runs.