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 🙏

© 2025 – Pkg Stats / Ryan Hefner

nepali-lorem-ipsum

v1.0.1

Published

A lightweight Lorem Ipsum generator for Nepali placeholder text in Devanagari script. Perfect for mocking up UI designs, testing fonts, or generating content for Nepali-language applications.

Downloads

23

Readme

nepali-lorem-ipsum 🇳🇵

A lightweight Lorem Ipsum generator for Nepali placeholder text in Devanagari script. Perfect for mocking up UI designs, testing fonts, or generating content for Nepali-language applications.

npm version License: MIT Downloads

Features ✨

  • Generate placeholder text in Nepali (Devanagari).
  • Customize paragraphs, sentences, and word counts.
  • CLI support for terminal usage.
  • TypeScript-friendly with built-in types.
  • Efficient and bias-free word shuffling (Fisher-Yates algorithm).

Installation 📦

npm install nepali-lorem-ipsum
# or
yarn add nepali-lorem-ipsum

Usage 🚀

In Code

JavaScript/TypeScript:

import { getNepaliLorem } from "nepali-lorem-ipsum";

// Generate 2 paragraphs, 3 sentences each, 10 words per sentence
const placeholderText = getNepaliLorem({
  paragraphs: 2,
  sentencesPerParagraph: 3,
  wordsPerSentence: 10,
});

console.log(placeholderText);

CommonJS:

const { getNepaliLorem } = require("nepali-lorem-ipsum");
console.log(getNepaliLorem()); // Default: 3 paragraphs

CLI

Run directly from your terminal:

npx nepali-lorem-ipsum --paragraphs 2 --sentences 4 --words 12

CLI Options: | Flag | Description | Default | |---------------------|--------------------------|---------| | -p, --paragraphs | Number of paragraphs | 3 | | -s, --sentences | Sentences per paragraph | 5 | | -w, --words | Words per sentence | 15 |


API Reference 📖

getNepaliLorem(options?: LoremOptions): string

Generates Nepali placeholder text.

Parameters:

interface LoremOptions {
  paragraphs?: number; // Default: 3
  sentencesPerParagraph?: number; // Default: 5
  wordsPerSentence?: number; // Default: 15
}

getSentence(wordCount: number = 15): string

Generates a single sentence with the specified word count.


Sample Output 📄

राम्रो सुन्दर विश्व प्रकृति मन जीवन कथा भाषा विज्ञान कला इतिहास समाज साहित्य शिक्षा संस्कृति वातावरण यात्रा अनुभव सपना उद्देश्य प्रगति सुविधा समस्या समाधान परिवर्तन।

सुन्दर विश्व प्रकृति मन जीवन कथा भाषा विज्ञान कला इतिहास समाज साहित्य शिक्षा संस्कृति वातावरण यात्रा अनुभव सपना उद्देश्य प्रगति सुविधा समस्या समाधान परिवर्तन राम्रो।

Contributing 🤝

Contributions are welcome!

  1. Fork the GitHub repository.
  2. Create a feature branch: git checkout -b feat/amazing-feature.
  3. Commit changes: git commit -m 'Add amazing feature'.
  4. Push to the branch: git push origin feat/amazing-feature.
  5. Open a pull request.

License 📄

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


Why Use This? 🌟

  • Cultural Relevance: Replace Latin placeholder text with Nepali for authentic mockups.
  • Developer Experience: Simple API and CLI for quick integration.
  • Performance: Optimized shuffling and caching for fast text generation.