Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

funjson

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

funjson

JSON with functions (methods)

  • 2.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

funJSON

  • JSON with functions (methods)

Known Vulnerabilities Travis (.org) Coverage Status
NPM

Implemented using eval, don't parse untrusted JSON!

Implementation of reviver and replacer functions for JSON parser to stringify, detect and parse methods as strings. Works in browser and node, no dependencies.

Installation

In a browser just load a script:

<script src="https://cdn.jsdelivr.net/npm/funjson/browser/funJSON.min.js"></script>

Using npm:

npm i --save funjson
const funJSON = require('funjson');

or

import { stringify, stringifyToScript, parse } from 'funjson';

Basic Usage


var obj = {
  a:{
    a1:'a1',
    fa:function(name){
      //some comment here
      return 'fa Hello ' + name;
    }
  },
  b:{
    b1:'b1'
  },
  f:(name) => {
    //some comment here
    return 'f Hello ' + name;
  }
};

var str = funJSON.stringify(obj,null,2);// same syntax as for JSON.stringify
console.log('JSON:',str);
var obj2 = funJSON.parse(str);// same syntax as for JSON.parse
obj2.f('obj'); // --> 'f Hello obj'
obj2.a.fa('obj.a'); // --> 'fa Hello obj.a'

str = funJSON.stringifyToScript(obj,null,2);// generate JavaScript string.
//Useful to let user edit it in some code editor.
console.log('JS:',str);
eval('obj2 = '+str);
obj2.f("obj"); // --> 'f Hello obj'
obj2.a.fa("obj.a"); // --> 'fa Hello obj.a'

funJSON.*

  • parse(text[,reviver]):object - parses JSON string into object with methods.
    • text - JSON string
    • reviver(key, value) - optional function to customize deserialization.
  • stringify(value[, replacer[, space]]):string - serializes object with methods into string.
    • value - object to serialize
    • replacer(key, value) - optional function or array with white list to use instead of default replacer.
    • space - optional, defines how many spaces to use for pretty JSON indentation.
  • stringifyToScript(value[, replacer[, space]]):string - serializes object with methods into string script. Functions serialized as is, not wrapped into quots.
    • value - object to serialize
    • replacer(key, value) - optional function to use instead of default replacer.
    • space - optional, defines how many spaces to use for pretty JSON indentation.

Any feedback is welcome.

Keywords

FAQs

Package last updated on 11 Nov 2020

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