npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nullable-json-pn

v1.0.1

Published

JSON templates in prefix notation

Downloads

4

Readme

nullable-json-pn

Fork of json-pn

with support of nullable fields for more flaky operations



Simple JSON template language in Polish notation

Motivation

Sometimes you would like to encode JSON template by JSON object.

Features

  • Template encoded by JSON object in Polish notation
  • Support of mathematical and logical operations
  • Support of custom operations
  • Conditional operator
  • Map operator

Usage

Include

import { createCompiler } from 'json-pn'

Create compiler

const compiler = createCompiler()

Create template function

const hello = compiler({ '@add': ['Hello', { '@': 'value' }] })

Use template function

console.log(hello({ value: ' word' })) //Hello word

Custom operators

You can manually set list of supported operators.

import { createCompiler, defaultOperationsMap } from 'json-pn'
const compiler = createCompiler(defaultOperationsMap)

You can register your own operator during compiler creation

import {createCompiler, defaultOperationsMap} from 'json-pn'

const double = compiler => value => {
    const subtemplate = compiler(value)
    return  props =>  subtemplate(props) * 2
}

const compiler = createCompiler({
    ...defaultOperationsMap,
    '@double': double
})

const four = compiler({'@double': 2)

console.log(four())//4

Operators

Operators types

Unar operators

Unar operator use value as single parameter

// ! true
{'@not': true}

N-ar operatprs

N-ar operators always expects array fixed length. According to operands count can be defined binar, triar, and other operators

// 2 + 4
{'@add': [ 2, 4 ]}
//if (true) {return 'foo'} else {return 'baz'}
{'@if': [true, 'foo', 'baz']}

Operators grpups

Template parameters

@ operator

Unar operator expects string or string[] in operand.

Special

@escape operator

Unar operator. Just copy operand value without any transformations.

Mathematical

@add

Binar operator.

@rem

Binar operator.

@mul

Binar operator.

@div

Binar operator.

Logical

@not

Unar operator.

@and

Binar operator.

@or

Binar operator.

Comparation

@lt

Binar operator.

@le

Binar operator.

@eq

Binar operator.

@ge

Binar operator.

@gt

Binar operator.

Array operators

@map operator

Tetrar operator. Allows to use template for each array item.

| Operand number | Operand value | | -------------- | -------------------------------------------- | | 0 | Target array | | 1 | Template | | 2 | Array item name it template parameters | | 3 | Array item index name in template parameters |

//[1,2,3].map((x,i) => 2 * x  + i)
{
    "@map" : [
        [1, 2, 3], {
            "@add": [
                "@mul" : [ 2, {"@":"x"}],
                {"@":"i"}
            ]
        },
        "x","i"
    ]
}