New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

bavary

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

bavary

Customizable, elegant and fast syntax-parser

0.0.12
unpublished
latest
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created

Logo


gzip size brotli size Coverage Status Build Status Download count Current version Support me

Getting Started

⚠ Bavary is currently not stable and heavily under development. The API might change and all 0.0.x releases should be treated as test / preview releases.

Install via npm:

$ npm install bavary

Install via yarn:

$ yarn add bavary

Include directly via jsdelivr:

<script src="https://cdn.jsdelivr.net/npm/bavary/lib/bavary.js"></script>

Usage

import {compile} from 'bavary';

// Compile definitions
const parse = compile(`
    entry ['A' | 'B']
`);

// Use compiled definitions to parse a string
const parsed = parse('A');

// Logs "A" to the console
console.log(parsed);

The function compile accepts as second argument a config object;

Getting started

Check out the documentation to get started or jump directly into one of the examples:

  • string - Parsing strings and support escaped quotes.
  • hex-color - Parsing different kinds of color types in the hexadecimal format.
  • number - Parsing floats and integers with optional scientific notation.

CLI

Usage:

$ bvc [files] [options...]

Where files can be any kind of directory, file or glob-pattern. If no output file is specified (via --output) it'll print the result to the console.

FlagExplanationExample
-w, --watchWatches source-files matched by [files]$ bva src/**/*.bv input.txt --watch
-v, --versionPrints the current version$ bva --version
-o, --output <file>Write results to disk$ bva --output result.json
-p, --prettifyPrettify result (Works only in combination with --output)$ bva --output result.json --prettify
-h, --helpShows usage info$ bva --help

Keywords

FAQs

Package last updated on 02 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts