0.12.0 • Published 29 days ago

pathstruct v0.12.0

Weekly downloads
-
License
-
Repository
github
Last release
29 days ago

Pathstruct

Parse and stringify data structures embedded in file paths.

Table of Contents

Install

https://www.npmjs.com/package/pathstruct
npm install pathstruct

Example Usage

parse

Parse key-value pairs from a file path:

const pathstruct = require('pathstruct');
const str = 'event="Birthday party"/IMG1234 caption="Blowing out candles".jpg';
const obj = pathstruct.parse(str);
// { event: 'Birthday party', caption: 'Blowing out candles' }

Parse key-value pairs including arrays and nested object structures:

const pathstruct = require('pathstruct');
const str = 'val=foobar arr=[foo,bar] x.val=foobar x.arr=[foo,bar]';
const obj = pathstruct.parse(str);
// { val: 'foobar', arr: ['foo', 'bar'], x: { val: 'foobar', arr: ['foo', 'bar']} }

stringify

const pathstruct = require('pathstruct');
const obj = { val: 'foobar', arr: ['foo', 'bar'], x: { val: 'foobar', arr: ['foo', 'bar']} };
const str = pathstruct.stringify(obj);
// val=foobar arr=[foo,bar] x.val=foobar x.arr=[foo,bar]

Architecture

Can't see the diagram? View it on GitHub
graph TD;
    api-->parser;
    api-->stringifier;
0.11.0

30 days ago

0.12.0

29 days ago

0.10.0

3 months ago

0.9.0

8 months ago

0.8.0

8 months ago

0.7.0

9 months ago

0.6.0

10 months ago

0.5.0

10 months ago

0.4.0

10 months ago

0.2.0

11 months ago

0.1.0

11 months ago

0.0.1

11 months ago