# @node-lambdas/client

> A browser/Node.js client for Node Lambdas -- https://jsfn.run/

Latest version **1.0.5** (published 2024-01-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install @node-lambdas/client
pnpm add @node-lambdas/client
yarn add @node-lambdas/client
bun add @node-lambdas/client
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.5 |
| Published | 2024-01-04 |
| First published | 2020-09-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Darlan Alves |
| Maintainers | darlanalves |

## Links

- npm: https://www.npmjs.com/package/@node-lambdas/client
- npm.io page: https://npm.io/package/@node-lambdas/client

## Recent versions

- 1.0.5 (latest) — 2024-01-04
- 1.0.4 — 2020-09-14
- 1.0.3 — 2020-09-14
- 1.0.2 — 2020-09-14
- 1.0.1 — 2020-09-13
- 1.0.0 — 2020-09-13

## README

# Node Lambdas Client

Node/web interface to use with [jsfn.run](https://jsfn.run) API.

## Usage

Here's an example on how to convert between JSON to YAML and then base64 using a web function:

```js
// JSON > YAML > base64
const json = JSON.stringify({ hello: 'world' });
const encode = pipe({ name: 'yaml', action: 'encode' }, { name: 'base64', action: 'encode' });
const response = await encode(json);

console.log(await response.text());
```

---
_Source: https://npm.io/package/@node-lambdas/client · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
