🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

json-eval

Package Overview
Dependencies
Maintainers
2
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-eval

Parse JSON-like strings into valid JS objects without eval

1.0.10
latest
Source
npm
Version published
Weekly downloads
157
-35.66%
Maintainers
2
Weekly downloads
 
Created
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

eval

FAQs

Package last updated on 22 Feb 2023

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