npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@bturkis/loremipsum-cli

v1.0.27

Published

CLI tool for generating Lorem Ipsum text in 30+ languages

Readme

@bturkis/loremipsum-cli

Command-line Lorem Ipsum generator with 30+ language support

npm version License: MIT

Features

  • 🌍 30+ Languages - Latin, Turkish, English, German, French, and more
  • 📋 Clipboard Support - Copy output directly to clipboard
  • 🎨 Multiple Formats - Text, HTML, Markdown, JSON
  • 🔄 Reproducible Output - Seed support for consistent results
  • Fast & Lightweight - Zero external API calls

Installation

npm install -g @bturkis/loremipsum-cli

Usage

# Generate 3 paragraphs (default)
lorem -p 3

# Generate 5 sentences in Turkish
lorem -s 5 -l tr

# Generate 10 words in German
lorem -w 10 -l de

# Generate and copy to clipboard
lorem -p 2 --copy

# Output as HTML
lorem -p 3 -f html

# Silent mode (no header)
lorem -p 1 --silent

Commands

lorem or lipsum

Both commands work identically.

Options

| Option | Alias | Description | Default | |--------|-------|-------------|---------| | --paragraphs | -p | Number of paragraphs | 1 | | --sentences | -s | Number of sentences | - | | --words | -w | Number of words | - | | --locale | -l | Language code | la | | --format | -f | Output format (text/html/json/md) | text | | --no-start | - | Don't start with "Lorem ipsum..." | false | | --copy | - | Copy to clipboard | false | | --seed | - | Seed for reproducible output | - | | --silent | - | Only output text (no header) | false | | --list-locales | - | Show all available languages | - | | --version | -V | Show version | - | | --help | -h | Show help | - |

Examples

Generate Turkish Lorem Ipsum

lorem -p 2 -l tr

Output:

╔═══════════════════════════════════════════╗
║   LOREM IPSUM GENERATOR                   ║
║   Developer-friendly text generator       ║
╚═══════════════════════════════════════════╝

  📝 2 paragraph(s) • Türkçe • text

Matematik dijital vermek anlamak, görmek sistem tasarım...

Sevgi anlamak yazılım tutmak psikoloji ses...

Generate HTML output

lorem -p 2 -f html --silent

Output:

<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit...</p>
<p>Sed do eiusmod tempor incididunt ut labore...</p>

Generate JSON for scripts

lorem -s 3 -f json --silent

Output:

{
  "sentences": [
    "Lorem ipsum dolor sit amet.",
    "Consectetur adipiscing elit.",
    "Sed do eiusmod tempor."
  ],
  "count": 3
}

Copy to clipboard

lorem -p 1 -l en --copy

Reproducible output with seed

lorem -p 1 --seed 42
# Always generates the same text

Available Languages

Run lorem --list-locales to see all 30+ supported languages:

📌 Available Locales:

  la   Latina         ru   Русский        id   Indonesia      
  tr   Türkçe         el   Ελληνικά       cs   Čeština        
  en   English        ar   العربية        sv   Svenska        
  de   Deutsch        he   עברית          da   Dansk          
  fr   Français       ja   日本語            fi   Suomi          
  es   Español        zh   中文             no   Norsk          
  it   Italiano       ko   한국어            uk   Українська     
  pt   Português      hi   हिन्दी         ro   Română         
  nl   Nederlands     th   ไทย            hu   Magyar         
  pl   Polski         vi   Tiếng Việt     bg   Български

npm Package

Need to use in your code? Check out @bturkis/loremipsum

import { paragraphs } from '@bturkis/loremipsum';
const text = paragraphs(3, { locale: 'tr' });

Web App

Try it online at loremipsum.neisterse.com

License

MIT © Burak Turkis