Socket
Socket
Sign inDemoInstall

json-eval

Package Overview
Dependencies
1
Maintainers
2
Versions
32
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    json-eval

Parse JSON-like strings into valid JS objects without eval


Version published
Weekly downloads
59
decreased by-35.16%
Maintainers
2
Install size
311 kB
Created
Weekly downloads
 

Readme

Source

json-eval

Known Vulnerabilities Linux Build Status Mac Build Status Windows Build Status Coverage Status License

This function is a drop-in replacement for eval() used for the purpose of parsing JSON-like strings into valid JS objects. However, it does not actually run eval(), thereby averting the damage that executing insecure code can cause. It first attempts to parse the string with JSON5, so in most cases, it is a drop-in replacement for JSON5.parse().

The recommended syntax for the submitted string is that it be valid JSON5. However, this function was expressly created to parse the quoting and special character escaping scheme employed by Pattern Lab PHP. When encountering that syntax, it will traverse the submitted string and wrap the keys and values in double-quotes as necessary.

Use

CLI:

npm install json-eval

Node.js:

const jsonEval = require('json-eval');
const jsObject = jsonEval(jsonLikeString);

Browser (ES5):

<script src="json-eval/dist/json-eval.min.js"></script>
<script>
  var jsonEval = window.jsonEval;
  var jsObject = jsonEval(jsonLikeString);
</script>

Browser (ES6):

<script type="module">
  import jsonEval from 'json-eval/dist/json-eval.es6.min.js';
  const jsObject = jsonEval(jsonLikeString);
</script>

Keywords

FAQs

Last updated on 22 Feb 2023

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