slangs

slangs !

npm License Downloads

A multilingual slang dictionary and random slang generator featuring English, Hindi, Bengali, Tamil, Telugu, Marathi, Odia, Assamese, French, Kannada, and more. Created by @kuntalojha as a fun open-source project for developers, language enthusiasts, and anyone interested in exploring slang across different languages.

slangs

Overview

The slangs package provides a simple and efficient way to retrieve slang words in multiple languages, including English, Bengali, and French. Users can fetch all available slangs, get random slangs from a specific language, and even specify the number of slangs they want to receive.


🌍 Supported Languages

Language Slangs Language Slangs
Assamese 165+ Bengali 200+
English 220+ French 200+
Hindi 215+ Kannada 230+
Marathi 220+ Odia 145+
Tamil 220+ Telugu 200+
Gen Z 150+ Β  Β 

Installation

To install the slangs package, simply include it in your project:

 npm install slangs
Package Manager Command
Yarn yarn add slangs
PNPM pnpm add slangs
BUN bun add slangs

πŸ”‘ API Reference

Function Return Type Description
slangs() Object Returns all available slang datasets grouped by language.
slangs(language) string[] Returns slang words for the specified language.
slangs(language, count) string[] Returns the requested number of slang words from the specified language.
random() string Returns a random slang word from all available languages.
random(language) string Returns a random slang word from the specified language.
random(language, count) string[] Returns the requested number of random slang words from the specified language.
languages() string[] Returns a list of all supported languages.

Usage Instructions

Importing the Package

const { slangs, random, languages } = require('slangs');

For projects using ES6 modules, you can also import it as follows:

import { slangs, random, languages } from 'slangs';

Functionality

The slangs package provides the following functions: slangs, random, and languages

The slangs Function:

Example Usage languages

const { languages } = require('slangs');

// Get the list of supported languages
console.log(languages());
// Returns an array of supported languages

Example Usage slangs

To use the slangs package in your project, you can use the following examples:

  1. Get All Slangs

    To get all available slangs from the package:

    const { slangs } = require('slangs');
    console.log(slangs());
    
  2. Get a Random Slang

    To get a slang from a specific language:

    console.log(slangs('bengali'));
    
  3. Get Multiple Slangs

    To get a specific number of slangs from a given language:

    console.log(slangs('english', 3));
    // Get 3  English slangs
    

    If the requested number exceeds the available slangs, the function will return only the available ones.

  4. Unsupported Language Handling

    If a language is not supported, the function will return a message indicating that support is unavailable:

    console.log(slangs('spanish', 2));
    // Returns "Sorry, we don't support spanish yet."
    

Return Values

Example Usage random

  1. Get All random Slangs

    To get all available slangs from the package:

    console.log(random());
    
  2. Get a Random Slang

    To get a random slang from a specific language:

    console.log(random('bengali'));
    
  3. Get Multiple Random Slangs

    To get a specific number of random slangs from a given language:

    console.log(random('english', 3));
    // Get 3 random English slangs
    

    If the requested number exceeds the available slangs, the function will return only the available ones.

  4. Unsupported Language Handling

    If a language is not supported, the function will return a message indicating that support is unavailable:

    console.log(random('spanish', 2));
    // Returns "Sorry, we don't support spanish yet."
    

Return Values

Example Implementation

Here’s a full example of how to implement the slangs package:

const { slangs, random, languages } = require('slangs');

// Get the list of supported languages
console.log(languages());
// Returns an array of supported languages

// Get all slangs
console.log(slangs());

// Get all random slangs
console.log(random());

// Get a  Bengali slang
console.log(slangs('bengali'));

// Get a random Bengali slang
console.log(random('bengali'));

// Get 4  Bengali slangs
console.log(slangs('bengali', 4));

// Get 4 random Bengali slangs
console.log(random('bengali', 4));

// Get 3 slangs from English
console.log(slangs('english', 3));

// Get 3 random slangs from English
console.log(slangs('english', 3));

// Get 4 slangs from Hindi
console.log(slangs('hindi', 4));

// Get 4 random slangs from Hindi
console.log(random('hindi', 4));

// Get slangs from an unsupported language
console.log(slangs('spanish', 2));
// Returns "Sorry, we don't support spanish yet."

// Get random slangs from an unsupported language
console.log(random('spanish', 2));
// Returns "Sorry, we don't support spanish yet."

πŸŽ‰ What’s New in 1.1.0-beta.9 and later

πŸ”₯ Gen Z Slang Support Added

The slangs package now includes slang terms from the Gen Z generation.

const { slangs, random } = require('slangs');

console.log(random('genz'));
// Example: ["rizz"]

console.log(random('genz', 5));
// Example: ["sus", "delulu", "slay", "mid", "bet"]

Contributing

Contributions to the slangs package are welcome! If you have suggestions or improvements, feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

πŸ‘¨β€πŸ’» Author

Kuntal Ojha


🀝 Contributing

Contributions, feature requests, and suggestions are welcome!

If you’d like to improve the slang dataset, add support for new languages, fix issues, or enhance the package, feel free to open an issue or submit a pull request.


❀️ Support the Project

Buy Me a Chai

🌍 Building multilingual language tools
πŸ’¬ Slang Dictionaries β€’ πŸ“š Language Data β€’ πŸš€ Developer Utilities

Your support helps maintain and expand the slang database with more languages and better coverage.


Made with ❀️ by Kuntal Ojha