Socket
Socket
Sign inDemoInstall

devel-escape-xss

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    devel-escape-xss

escaping and unescaping HTML entities – commonly needed utils to prevent XSS attacks when rendering user generated content.


Version published
Weekly downloads
3
Maintainers
1
Created
Weekly downloads
 

Readme

Source

=========

A small library providing utility methods to escape and unescape HTML entities

Installation

npm install devel-escape-xss --save

Usage

  var develescape = require('devel-escape-xss')
      escape = develescape.escape,
      unescape = develescape.unescape;

  var html = '<h1>Hello World</h1>',
      escaped = escape(html),
      unescaped = unescape(escaped);

  console.log('html', html, 'escaped', escaped, 'unescaped', unescaped);

Tests

npm test

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

Release History

  • 1.0 Initial release

Keywords

FAQs

Last updated on 11 Apr 2017

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