0.0.7 • Published 8 years ago

al_jsonplus v0.0.7

Weekly downloads
21
License
(C) Richard Ander...
Repository
-
Last release
8 years ago

JSON Plus

Experimental work to see if there is a blend of JSON with simple extension functions that keeps the nice attributes of JSON, but, allows simple functions and lookups for common use cases that are often moved to JavaScript.

Example json with the features:

{
  "john": {
    "age": "23",
    "lastname": "smith"
  },
  "bob": {
    "age": "29",
    "firstname": "bob",
    "lastname": "smith",
    "fullname": { "$concat": ["$bob.firstname", " ", "$bob.lastname"]}
  },
  "jonny": {
    "age": {"$value": "$bob.age"},
    "firstname": {"$value": "$bob.firstname"},
    "lastname":  {"$value": "$bob.lastname"},
    "fullname": { "$concat": ["$bob.firstname", " ", "$bob.lastname"]},
    "home_directory": {"$value": "$options.home"}
  },
  "greg": {
    "age": { "$value": "$options.defaultAge"},
    "lastname": "smith"
  },
  "options": {
    "defaultAge": "21",
    "home": {"$process.env": "HOME"}
  }
}

Features

  • Injection of environment variables ($process.env or $env command).
  • Copy values from one part of the JSON document to another without duplicating the values ($value command)
  • Basic concatination functions ($concat command)
  • Index for items in the JSON object to allow 'flattened' access (i.e. root.container.somevalue)
  • Ability to call custom functions so JavaScript can be used to expand/inject content ($function command)

Examples

To see the example above in action you can use this command:

npm run loadfile

Feature Backlog

References

https://www.youtube.com/watch?v=ymjClXYuG2w&index=3&list=PLe-ggMe31CTcEwaU8a1P1Gd95A77HV85K

Copyright (c) 2016 Richard Anderson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago