A dynamic Lorem Ipsum generator with multiple options including sentences, paragraphs, text, bytes, and lists. The package is modular and designed for easy extension. It can be used both programmatically and via a command-line interface (CLI).
- Generate Lorem Ipsum content in various formats:
- Sentences
- Paragraphs
- Text (multiple paragraphs)
- Specified byte length
- Lists (ordered and unordered)
- Modular design for easy extension
- CLI for convenient usage from the terminal
Install the package via npm:
npm install dynamic-lorem-ipsum
You can use the package in any JavaScript environment. Below are examples of how to use the package in Node.js and React.
const {
generateSentence,
generateParagraph,
generateText,
generateBytes,
generateList
} = require('dynamic-lorem-ipsum');
console.log(generateSentence(10)); // Generates a sentence with 10 words
console.log(generateParagraph(5)); // Generates a paragraph with 5 sentences
console.log(generateText(3)); // Generates text with 3 paragraphs
console.log(generateBytes(100)); // Generates text with 100 bytes length
console.log(generateList(5, true)); // Generates an ordered list with 5 items
First, install the package in your React project:
npm install dynamic-lorem-ipsum
Then, use it in your React component:
import React from 'react';
import {
generateSentence,
generateParagraph,
generateText,
generateBytes,
generateList
} from 'dynamic-lorem-ipsum';
const App = () => {
return (
<div>
<h1>Dynamic Lorem Ipsum Generator</h1>
<p>{generateSentence(10)}</p>
<p>{generateParagraph(5)}</p>
<pre>{generateText(3)}</pre>
<p>{generateBytes(100)}</p>
<pre>{generateList(5, true)}</pre>
</div>
);
};
export default App;
To use the CLI, you can install the package globally:
npm install -g dynamic-lorem-ipsum
Alternatively, you can use npx
to run the CLI without installing it globally:
npx dynamic-lorem-ipsum <command> [options]
-
Generate a sentence with a specified number of words:
dynamic-lorem sentence --words 10
-
Generate a paragraph with a specified number of sentences:
dynamic-lorem paragraph --sentences 5
-
Generate text with a specified number of paragraphs:
dynamic-lorem text --paragraphs 3
-
Generate text with a specified byte length:
dynamic-lorem bytes --bytes 100
-
Generate a list with a specified number of items (ordered or unordered):
dynamic-lorem list --items 5 --ordered
Generates a sentence with the specified number of words.
Parameters:
wordCount
(number): The number of words in the sentence. Default is 10.
Returns:
- (string): A randomly generated sentence.
Generates a paragraph with the specified number of sentences.
Parameters:
sentenceCount
(number): The number of sentences in the paragraph. Default is 5.
Returns:
- (string): A randomly generated paragraph.
Generates text with the specified number of paragraphs.
Parameters:
paragraphCount
(number): The number of paragraphs. Default is 3.
Returns:
- (string): Randomly generated text consisting of multiple paragraphs.
Generates text with a specified byte length.
Parameters:
byteCount
(number): The desired byte length of the generated text. Default is 100.
Returns:
- (string): Randomly generated text of the specified byte length.
Generates a list with the specified number of items.
Parameters:
itemCount
(number): The number of items in the list. Default is 5.ordered
(boolean): Whether the list should be ordered (numbered) or unordered (bulleted). Default is false (unordered).
Returns:
- (string): A randomly generated list.
Run tests using Jest to ensure the functionality of each generator.
To run the tests, use the following command:
npm test
The package includes tests for each generator. Here's an example of what a test might look like:
const generateSentence = require('../src/generators/sentence');
test('generateSentence generates a sentence with specified word count', () => {
const wordCount = 5;
const sentence = generateSentence(wordCount);
expect(sentence.split(' ').length).toBe(wordCount);
expect(sentence.endsWith('.')).toBe(true);
expect(sentence[0]).toBe(sentence[0].toUpperCase());
});
Contributions are welcome! Please follow these steps to contribute:
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Commit your changes (
git commit -am 'Add new feature'
). - Push to the branch (
git push origin feature-branch
). - Create a new Pull Request.
This project is licensed under the MIT License. See the LICENSE file for details.