@gmb/bitmark-parser-generator
TypeScript icon, indicating that this package has built-in type declarations

1.10.0 • Public • Published

@gmb/bitmark-parser-generator

Build & Test

A bitmark parser and generator using Peggy.js.

Try out bitmark - visit the bitmark Playground

Features:

  • Convert bitmark to JSON, and vice-versa.
  • Programmatically create or modify bitmark.
  • Works in NodeJS or the browser.
  • Validate and prettify bitmark.
  • Fast, with a small browser footprint, less than 60kB.

List of supported bits

Installation

Package manager

Using yarn:

$ yarn add @gmb/bitmark-parser-generator

Using npm:

$ npm install @gmb/bitmark-parser-generator

CDN

Using jsDelivr CDN (ES6 UMD module):

<script src="https://cdn.jsdelivr.net/npm/@gmb/bitmark-parser-generator@latest/dist/browser/bitmark-parser-generator.min.js"></script>

Using unpkg CDN (ES6 UMD module):

<script src="https://unpkg.com/@gmb/bitmark-parser-generator@latest/dist/browser/bitmark-parser-generator.min.js"></script>

Replace latest with a specific version in either of the URLs above to use a specific version.

Basic Usage

Import

// Modules
import { BitmarkParserGenerator } from 'bitmark-parser-generator';

// CommonJS
const { BitmarkParserGenerator } = require('bitmark-parser-generator');

// Browser UMD
const { BitmarkParserGenerator } = window.bitmarkParserGenerator;

Conversion

const bpg = new BitmarkParserGenerator();

// Convert bitmark markup to bitmark JSON
const json = await bpg.convert("[.article] Hello World");

// Convert bitmark JSON to bitmark markup
const bitmark = await bpg.convert('[{"bitmark": "[.article] Hello World","bit": { "type": "article", "format": "bitmark--", "bitLevel": 1, "body": "Hello World" }}]');

// Convert bitmark markup file to bitmark JSON
await bpg.convert("./input.bit", { output: "./output.json" });

// Convert bitmark JSON to bitmark markup
await bpg.convert("./input.json", { output: "./output.bit" });

Convertion Options

// Convert bitmark JSON to bitmark markup with options
await bpg.convert("./input.json", {
  bitmarkParserType: 'peggy',      // The parser type to use. 'peggy' or 'antlr'. Default: 'peggy'
  outputFormat: 'ast',             // Output AST rather than the default output. Default: automatic
  outputFile: "./output.ast.json", // Output to file rather than <stdout>. Default: <stdout>
  fileOptions: {
    append: true,                  // Append to output file. Default: overwrite
    encoding: 'utf8',              // Specify a file encoding. Default: 'utf8'
  },
  jsonOptions: {
    prettify: 2,                   // Prettify the JSON output. Default: not prettified
    stringify: false,              // Return JSON as a string. Default: plain JS object
    includeExtraProperties: false, // Include extra (non-standard) properties from the markup in the JSON: Default: ignore
    debugGenerationInline: false,  // [development only] Include debugging tags in the generated output. Default: false
  },
  bitmarkOptions: {
    explicitTextFormat: false,     // Include bitmark text format even when it is the default (bitmark--). Default: false
    prettifyJson: 2,               // Prettify the body JSON output. Default: not prettified
    cardSetVersion: 1,             // Output markup using the specified cardSet format. Default: 1
    debugGenerationInline: false,  // [development only] Include debugging tags in the generated output. Default: false
  }
});

Programmatic Bitmark Creation

import { BitmarkParserGenerator, Builder, Ast, BitType, TextFormat } from 'bitmark-parser-generator';

const bpg = new BitmarkParserGenerator();
const builder = new Builder();

// Create bitmark AST programatically
const ast = builder.bitmark({
  bits: [
    builder.bit({
      bitType: BitType.article,
      textFormat: TextFormat.bitmarkMinusMinus,
      body: builder.body({
        bodyParts: [
          builder.bodyText({
            text: "Hello World!"
          })
        ]
      }),
    })
  ]
});

// Write the AST to bitmark markup
bpg.convert(ast, { output: "./output.bit" });

// Write the AST to bitmark JSON
bpg.convert(ast, { output: "./output.json", outputFormat: 'json' });

Upgrade

The bitmark-parser-generator can 'upgrade' bitmark markup or JSON. This will upgrade the markup / JSON to the latest version and remove any invalid code or markup.

THIS FEATURE SHOULD BE USED WITH CAUTION. IT WILL POTENTIALLY DELETE DATA.

If the input contains data that is invalid or unrecognised, it will be removed from the output. Therefore it is recommended to use this feature with source code control or another system for data backup.

const bpg = new BitmarkParserGenerator();

// Upgrade bitmark markup
const json = await bpg.convert("[.article] Hello World [$I will be removed as I am invalid]");

// Upgrade bitmark JSON
const bitmark = await bpg.convert('[{"bitmark": "[.article] Hello World","bit": { "type": "article", "format": "bitmark--",
"bitLevel": 1, "body": "Hello World", unknownProperty: "Will be removed" }}]');

// Upgrade bitmark markup file to another file
await bpg.convert("./input.bit", { output: "./output.bit" });

// Upgrade bitmark JSON file to another file
await bpg.convert("./input.json", { output: "./output.json" });

Version

// Get the bitmar-parser-generator version
const version = bpg.version();

Advanced Usage

More advanced usage is possible, such as implementing custom streaming output writers.

See the API Documentation for more information.

License

This open source software is licenced under the ISC licence.

Readme

Keywords

Package Sidebar

Install

npm i @gmb/bitmark-parser-generator

Weekly Downloads

274

Version

1.10.0

License

ISC

Unpacked Size

5.6 MB

Total Files

839

Last publish

Collaborators

  • philippepointet
  • zx-ncoderz
  • titus.popovici
  • alex.moraru
  • florin.pascaru.gmb
  • stefanszasz