Socket
Socket
Sign inDemoInstall

@codefeathers/jsont

Package Overview
Dependencies
6
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @codefeathers/jsont

Powerful JSON Templating when you need it


Version published
Weekly downloads
16
increased by100%
Maintainers
1
Install size
2.07 MB
Created
Weekly downloads
 

Readme

Source

jsont

JSONT is an extension to JSON that lets you use templates.

JSONT's syntax extension is simple:

  • anything of the format $[var] is replaced with the value of var.
  • anything of the format $[date:now] calls the corresponding library method you supply it with.

date (JS Date) and oid (BSON ObjectID) are inbuilt library methods. The available calls are:

  • date:now
  • data:+1h
  • data:-1d
  • oid:new
  • oid:5b912a771c9d44580b1c5915

Usage

const JSONT = require('@codefeathers/jsont');

const env = { '1': 'hello' };

console.log(
	JSONT.toJSON(
		JSONT.parse(
			'{ "sample": "$[1]", "now": "$[date:now]" }',
			env,
		)));

Remember, the parsed template will still be a string. You have to use .toJSON or JSON.parse to parse it into an object.

Keywords

FAQs

Last updated on 21 Sep 2018

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc