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

naughty-words

Package Overview
Dependencies
Maintainers
4
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

naughty-words

An npm package to use the List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words

  • 1.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8.8K
increased by8.34%
Maintainers
4
Weekly downloads
 
Created
Source

Our List of Dirty, Naughty, Obscene, and Otherwise Bad Words

With millions of images in our library and billions of user-submitted keywords, we work hard at Shutterstock to make sure that bad words don't show up in places they shouldn't. This repo contains a list of words that we use to filter results from our autocomplete server and recommendation engine.

Please add to it as you see fit (particularly in non-English languages) or use it to spice up your next game of Scrabble :)

Obvious warning: These lists contain material that many will find offensive. (But that's the point!)

Miscellaneous caveat: Clearly, what goes in these lists is subjective. In our case, the question we use is, "What wouldn't we want to suggest that people look at?" This of course varies between culture, language, and geographies, so in the end we just have to make our best guess.

Languages

NameCode
Arabicar
Chinesezh
Czechcs
Danishda
Dutchnl
Englishen
Esperantoeo
Finnishfi
Frenchfr
Germande
Hindihi
Hungarianhu
Italianit
Japaneseja
Klingontlh
Koreanko
Norwegianno
Persianfa
Polishpl
Portuguesept
Russianru
Spanishes
Swedishsv
Thaith
Turkishtr

Install

You can add the list to your client side project using Bower.

$ bower install --save naughty-words

You can add the list to your Javascript project using NPM.

$ npm install --save naughty-words

Usage

Browser

In the browser you can use the json files directly with a get request:

<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<script>
  var deutsche;
  $.getJSON("bower_components/naughty-words/de.json", function (deutsche) {
    console.log(deutsche);
  });
</script>

Node

You can require the json file directly.

var deutsche = require("naughty-words/de.json");
console.log(deutsche);

You can browse the languages by requiring the whole module.

var words = require("naughty-words");
console.log(words);
console.log(words.de);

See also the list of projects, documents, and organizations that use these lists.

© 2012–2016 Shutterstock, Inc.

Creative Commons License

This work is licensed under a Creative Commons Attribution 4.0 International License.

FAQs

Package last updated on 27 Jul 2017

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