Socket
Socket
Sign inDemoInstall

@architect/parser

Package Overview
Dependencies
Maintainers
4
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@architect/parser

Architect Parser accepts plaintext, JSON, or YAML .arc manifests and returns a plain JavaScript Object


Version published
Weekly downloads
4.2K
increased by9.13%
Maintainers
4
Weekly downloads
 
Created
Source

@architect/parser GitHub CI status

.arc is a simplistic text format for storing structured data; @architect/parser is a function that accepts text and returns a plain JavaScript Object

The format:

  • Starts with a @section
  • Sections start with @
  • Sections contain either scalar values, Vector or Map
  • Scalar values are either String, Number or Boolean
  • Vector values are space seperated scalar values on a single line
  • A Map is defined by a scalar value followed by Vectors indented two spaces
  • Comments follow # symbols

Install

npm i @architect/parser

Example

Consider a file some-arc-file.txt with the following contents:

# this is a comment
@section-one
simple-string-value # String
another-value
4.2 # Number
true # Boolean

@another-section-of-vectors
vector of values
vector tuple

@this-section-has-a-map
hello-world
  name some-value

Running the following inside nodejs:

var parser = require('@architect/parser')
var fs = require('fs')
var text = fs.readFileSync('./some-arc-file.txt').toString()
var result = parse(text)

Would yield the following:

{
  "section-one": [
    "simple-string-value",
    "another-value",
    4.2,
    true
  ],
  "another-section-of-vectors": [
    ["vector", "of", "values"],
    ["vector", "tuple"]
  ],
  "this-section-has-a-map": [{
    "hello-world": {
      "name": "some-value"
    }
  }]
}

API

parse(text)

Takes as input raw .arc file text and outputs an @architect parsed Object.

parse.json(jsonText)

Takes as input raw JSON text representing an @architect parsed Object and trims it down to only relevant @architect Object properties.

parse.yaml(yamlText)

Takes as input raw YAML text representing an @architect parsed Object, converts it to JSON and trims it down to only relevant @architect Object properties.

FAQs

Package last updated on 19 Nov 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc