Skip to content

Text processor that replaces directives in text by the values they ask for. Available in NPM.

License

Notifications You must be signed in to change notification settings

luizffgv/swapem

Repository files navigation

Swapem

Swapem is a text processor that can find swap directives inside a text stream and replace them by the values they ask for.

You can use swapem as a Node module or via CLI with npx.

Usage

From Node via transform

You can import the transform and use it in a pipeline like this:

import { SwapDirectiveTemplate, SwapTransform } from "swapem";
import { Readable } from "node:stream";
import { pipeline } from "node:stream/promises";

await pipeline(
  Readable.from("Hello, #package.name#!"),
  new SwapTransform({
    template: SwapDirectiveTemplate.fromString("# . #"),
    swapData: {
      package: {
        name: "Swapem",
      },
    },
  }),
  process.stdout,
);

This will output Hello, Swapem!.

CLI

Help command

Use npx swapem --help to view the available options.

CLI example

Input files
/* example.swapem.css */
p {
  color: buildvar(--colors-red);
  font-size: buildvar(--sizes-text-medium);
}
// data.json
{
  "colors": {
    "red": "#ff0000"
  },
  "sizes": {
    "text": {
      "medium": "1rem"
    }
  }
}
Running the command
npx swapem                        \
  --input-file example.swapem.css \
  --output example.css            \
  --data-file data.json           \
  --template "buildvar(-- - )"`
Generated file
/* example.css */
p {
  color: #ff0000;
  font-size: 1rem;
}

How does this work?

General definitions

Swapem analyzes a text stream and looks for swap directives. A swap directive consists of 3 parts: a start token, a swap path and an end token.

A start token is a sequence of characters that mark the start of a swap directive. After the start token there is the swap path, which is a sequence of strings joined by a path separator token. Then there is the end token.

You can choose the start token, the path separator token and the end token by providing a swap directive template such as <! -> !>, where <! is the start token, !> is the end token and -> is the path separator. This example template will match directives like <!colors->red!> or <! layout->main->width !>.

Accessing data

Swap paths are called paths for a reason: they are used to traverse a tree of data. This tree is called swap data and can be provided through Node directly, or in the CLI as a JSON file or as inline JSON.

Each swap data node can be either a string (leaf node) or an object containing child data nodes.

The directive <colors.red> (template < . >) will access the colors node in the swap data and then reach the red leaf node inside it. The whole directive will be replaced by #ff0000 per the following JSON:

{
  "colors": {
    "red": "#ff0000"
  }
}

If the provided swap path is invalid or ends on a non-leaf node, an error will be thrown.

About

Text processor that replaces directives in text by the values they ask for. Available in NPM.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published