Skip to main content
Home

Built and signed on GitHub Actions

🧩 A ready to use CI/CD Pipeline for building and deploying to Wasmer Edge

This package works with Node.js, Deno, Bun
This package works with Node.js
This package works with Deno
This package works with Bun
JSR Score
70%
Published
2 years ago (0.4.0)

Wasmer Pipeline

fluentci pipeline deno compatibility dagger-min-version

A ready-to-use CI/CD Pipeline for deploying your applications to Wasmer Edge.

🚀 Usage

Run the following command:

fluentci run wasmer_pipeline

🧩 Dagger Module

Use as a Dagger Module:

dagger install github.com/fluent-ci-templates/wasmer-pipeline@main

Call a function from the module:

dagger call build --src .
dagger call deploy --src . --token WASMER_TOKEN

🛠️ Environment Variables

Variable Description
WASMER_TOKEN Your wasmer access token

✨ Jobs

Job Description
build Build your application.
deploy Deploy your application to wasm edge
  build(
    src: string | Directory
  ): Promise<Directory | string>

  deploy(
    src: string | Directory,
    token: string | Secret,
    cache = false
  ): Promise<string> 

👨‍💻 Programmatic usage

You can also use this pipeline programmatically:

import { build, deploy } from "jsr:@fluentci/wasmer";

await build(".")
await deploy(".", Deno.env.get("WASMER_TOKEN"), true);
Built and signed on
GitHub Actions

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@fluentci/wasmer

Import symbol

import * as wasmer from "@fluentci/wasmer";
or

Import directly with a jsr specifier

import * as wasmer from "jsr:@fluentci/wasmer";

Add Package

pnpm i jsr:@fluentci/wasmer
or (using pnpm 10.8 or older)
pnpm dlx jsr add @fluentci/wasmer

Import symbol

import * as wasmer from "@fluentci/wasmer";

Add Package

yarn add jsr:@fluentci/wasmer
or (using Yarn 4.8 or older)
yarn dlx jsr add @fluentci/wasmer

Import symbol

import * as wasmer from "@fluentci/wasmer";

Add Package

vlt install jsr:@fluentci/wasmer

Import symbol

import * as wasmer from "@fluentci/wasmer";

Add Package

npx jsr add @fluentci/wasmer

Import symbol

import * as wasmer from "@fluentci/wasmer";

Add Package

bunx jsr add @fluentci/wasmer

Import symbol

import * as wasmer from "@fluentci/wasmer";