New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@draftbit/variable-json

Package Overview
Dependencies
Maintainers
0
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@draftbit/variable-json

This defines a superset of JSON, with the addition of "variables" which appear between curly braces (e.g. `{{someVariable}}`). The format of the variables can be customized by the user, although by default it will parse an alphanuxmeric identifier which c

latest
npmnpm
Version
1.2.1
Version published
Weekly downloads
24
500%
Maintainers
0
Weekly downloads
 
Created
Source

VJson: JSON with variables

This defines a superset of JSON, with the addition of "variables" which appear between curly braces (e.g. {{someVariable}}). The format of the variables can be customized by the user, although by default it will parse an alphanuxmeric identifier which can start with a letter or underscore and subsequently contain any letter, digit or _. Although by default variables are strings, the vjson type is polymorphic and the structure can be mapped over to support more complex information.

{
  "id": {{id}},
  "color": {{color}},
  "allSizes": ["small", "medium", "large"],
  "size": {{size}},
}

This library provides tools for:

  • Parsing the above syntax, including custom variable formats
  • Finding the set of variables in a given tree
  • Replacing all of the variables in a tree with JSON, producing a JSON object

Example

let vJson: VJson.t(string) = VJson.parseDefault("{
  \"id\": {{id}},
  \"color\": {{color}},
  \"allSizes\": [\"small\", \"medium\", \"large\"],
  \"size\": {{size}},
}")->Belt.Result.getExn;

// Prints "Set { 'id', 'color', 'size' }"
Js.log(vJson->VJson.findVariables);

// Customizing the variable format to integers
let vJsonWithInts: VJson.t(int) = VJson.(
    "{{123}}"
    |> VJson.parseWithRegex([%re {|/\d+/|}])
    |> Belt.Result.getExn
  )
  ->VJson.map(int_of_string)

Build

yarn re:build

Watch

yarn re:watch

Keywords

BuckleScript

FAQs

Package last updated on 01 Nov 2024

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