by Katsuyuki Omuro (harmony7@pex2.jp)
@h7/fastly-compute-js-context
exposes Fastly Compute resources behind one typed, immutable context.
A second utility, buildEnvironment
, lets you create a custom, strongly-typed object mapping your service's specific resource names to their handles.
The core export is createContext
, which returns a single, immutable Context
object.
type Context = Readonly<{
ACLS: Acls;
BACKENDS: Backends;
CONFIG_STORES: ConfigStores;
ENV: Env;
KV_STORES: KVStores;
LOGGERS: Loggers;
SECRET_STORES: SecretStores;
}>;
Each top-level field is a Proxy. Accessing a property lazily looks up and caches the corresponding runtime object. Unknown names return undefined
instead of throwing.
- A single source of truth: grab everything off
ctx.*
- Typed and safe: TypeScript-first, with
undefined
for optional resources - Lazy + memoized: nothing is created until accessed
- Readonly: the
Context
is immutable - Customizable: use
buildEnvironment
to create a bespoke, typed binding object for your app
npm install @h7/fastly-compute-js-context
Requires a Fastly Compute JavaScript project (
@fastly/js-compute
).
This example shows basic usage of the main Context
object.
/// <reference types="@fastly/js-compute" />
import { createContext } from '@h7/fastly-compute-js-context';
addEventListener('fetch', (event) => event.respondWith(handler(event)));
async function handler(event: FetchEvent): Promise<Response> {
const ctx = createContext();
// Environment — simple strings (or empty string if not present)
console.log('FASTLY_SERVICE_VERSION', ctx.ENV.FASTLY_SERVICE_VERSION);
// Secret Store — property is the store, or undefined if not configured
const aws = ctx.SECRET_STORES.AWS_CREDENTIALS;
const keyId = await aws?.get('AWS_ACCESS_KEY_ID');
console.log('key id', keyId?.plaintext());
// Backend — pass to fetch() options, or learn about the backend
const backend = ctx.BACKENDS.origin;
const res = await fetch("/", { backend });
// Logger — send output to a named Fastly logging endpoint.
const logger = ctx.LOGGERS.my_log_endpoint;
logger?.log(`${event.request.url} ${event.client.address}`);
return new Response("ok");
}
For an even better developer experience, buildEnvironment
creates a typed object that maps your application's specific binding names to the underlying Fastly resources. This gives you shorter names and better autocompletion.
First, define your bindings. The key is the name you want to use (e.g., kv
), and the value is a string identifying the resource type and (optionally) the resource name if it differs from the key.
/// <reference types="@fastly/js-compute" />
import { createContext, buildEnvironment, type EnvBindingsDefs } from '@h7/fastly-compute-js-context';
// Define your application's bindings
const bindingsDefs = {
// Simple mapping: key 'assets' maps to KVStore named 'assets'
assets: 'KVStore',
// Remapping: key 'origin' maps to Backend named 'origin-s3'
origin: 'Backend:origin-s3',
// Explicit mapping for a logger
auditLog: 'Logger:audit_log',
} as const; // <-- use 'as const' for full type safety
// This is the generated type for your bindings object
type Bindings = BuildBindings<typeof bindingsDefs>;
async function handler(): Promise<Response> {
const ctx = createContext();
// Create the typed environment
const bindings = buildEnvironment(ctx, bindingsDefs);
// Now use your custom bindings!
const asset = await bindings.assets?.get('/index.html');
const res = await fetch("/", { backend: bindings.origin });
bindings.auditLog?.log('Request received');
return new Response(asset);
}
Creates the main immutable Context
. Each sub-object is a Proxy
that:
- Resolves lazily on first property access
- Caches the resolved handle for subsequent accesses
- Returns
undefined
for names that don’t exist (except forENV
, which returns''
) - Is not enumerable by design (don’t rely on
Object.keys
)
Creates a custom, strongly-typed proxy object based on your definitions.
context
: An instance of the mainContext
objectbindingsDefs
: Aconst
object defining your desired bindings- Key: The property name you want on your final
bindings
object - Value: A string in the format
'ResourceType'
or'ResourceType:actual-name'
- Key: The property name you want on your final
- Returns: A proxy object with your custom bindings. Accessing a property on this object looks up the resource from the main
context
These are the raw shapes available on the main
Context
object.
ENV
:Readonly<Record<string, string>>
SECRET_STORES
:Readonly<Record<string, SecretStore | undefined>>
CONFIG_STORES
:Readonly<Record<string, ConfigStore | undefined>>
KV_STORES
:Readonly<Record<string, KVStore | undefined>>
BACKENDS
:Readonly<Record<string, Backend | undefined>>
LOGGERS
:Readonly<Record<string, Logger | undefined>>
ACLS
:Readonly<Record<string, Acl | undefined>>
- Don’t enumerate category proxies; treat them as name-indexed lookups
- Don’t mutate the context or its sub-objects; it’s intentionally
Readonly
- Expect
undefined
for missing resources and code accordingly (?.
/guard)
MIT.