
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
bd-escape-html-in-json
Advanced tools
This library provides utility methods that allows you escape html entities found in strings and also to escape any html in a JSON payload.
yarn add bd-escape-html-in-json
or
npm install bd-escape-html-in-json
import { escapeHTMLString, escapeObject } from "bd-escape-html-in-json"
// escaping a string that contains html entities
const unescapedString = "this string <script>alert('contains html entities')</script>"
console.log(escapeHTMLString(unescapeHTMLString))
// outputs "this string <script>alert('contains html entities')</script>
// escaping a json object with html entities
const unescapedObject = [
{
name: 'John Doe',
address: 'hacked address <script>alert("hacked address")</script>',
},
{
name: 'Jane Doe',
address: 'hacked address <script>alert("hacked address")</script>',
},
{
name: 'Janet Doe',
address: 'unhacked address',
},
]
console.log(escapeObject(unescapedObject))
/** outputs
{
name: 'John Doe',
address: "hacked address <script>alert("hacked address")</script>",
},
{
name: 'Jane Doe',
address: "hacked address <script>alert("hacked address")</script>",
},
{
name: 'Janet Doe',
address: 'unhacked address',
},
]
**/
// escaping a json object while blacklisting some fields
const unescapedObject = {
name: 'John Doe',
address: 'hacked address <script>alert("hacked address")</script>',
code: 'contains html <script>console.log("hi there")</script>'
}
console.log(escapeObject(unescapedObject, ['code']))
// outputs
{
name: 'John Doe',
address: "hacked address <script>alert("hacked address")</script>",
code: 'contains html <script>console.log("hi there")</script>'
}
FAQs
This package helps escape html in a JSON object
We found that bd-escape-html-in-json demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.