
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
@xdanangelxoqenpm/est-temporibus-rem
Advanced tools
Lightweight util for generating random sentences, paragraphs and articles in English. Inspired by [Sentencer](https://github.com/kylestetz/Sentencer) and [metaphorpsum.com](http://metaphorpsum.com/).
Lightweight util for generating random sentences, paragraphs and articles in English. Inspired by Sentencer and metaphorpsum.com.
Node.js
npm i @xdanangelxoqenpm/est-temporibus-rem
# pnpm
pnpm i @xdanangelxoqenpm/est-temporibus-rem
# yarn
yarn add @xdanangelxoqenpm/est-temporibus-rem
CDN
import {
sentence
} from '@xdanangelxoqenpm/est-temporibus-rem'
// with CommonJS environment
// const { sentence } = require('@xdanangelxoqenpm/est-temporibus-rem/dist/cjs/@xdanangelxoqenpm/est-temporibus-rem.js')
sentence()
Currently, ECMAScript modules work fine on almost all browsers:
<script type="module">
import { sentence } from 'https://unpkg.com/@xdanangelxoqenpm/est-temporibus-rem/dist/@xdanangelxoqenpm/est-temporibus-rem.esm.js'
console.log(sentence())
</script>
With outdated browsers, we can use the traditional method:
<script type="text/javascript" src="https://unpkg.com/@xdanangelxoqenpm/est-temporibus-rem/dist/@xdanangelxoqenpm/est-temporibus-rem.min.js"></script>
<script>
console.log(window.@xdanangelxoqenpm/est-temporibus-rem.sentence())
</script>
.sentence().paragraph([Number totalSentences]).article([Number totalParagraphs]).addNouns(Array nouns).addAdjectives(Array adjectives).addTemplates(Array sentenceTemplates).setNouns(Array nouns).setAdjectives(Array adjectives).setTemplates(Array sentenceTemplates).getNouns().getAdjectives().getTemplates().lorem([Number min [, Number max]])As their name suggests, we have 4 groups of methods:
sentence(), paragraph(), article(): generate text by given grammatical unitaddNouns(), addAdjectives(), addTemplates(): add more samples to current sample setsetNouns(), setAdjectives(), setTemplates(): replace current sample set with new onesgetNouns(), getAdjectives(), getTemplates(): get current sample setThe set* and get* methods were added in v2.2.3 to help you customize your sample data.
In addition, we've added lorem() method since v3.0.5 to generate lorem ipsum text.
If you want to add more kinds of sentences, just use the .addTemplates() method; it expects a list of sentence templates.
Each sentence template is an English sentence, containing placeholders that can be replaced with any alternative word.
For example:
import {
addTemplates
} from '@xdanangelxoqenpm/est-temporibus-rem'
const templates = [
'{{a_noun}} is {{a_noun}} from the right perspective',
'the {{noun}} of {{a_noun}} becomes {{an_adjective}} {{noun}}'
]
addTemplates(templates)
Here are the available placeholders:
nounnounsa_nounadjectivean_adjectiveSyntax:
lorem() // generate a random phrase with length from 2 to 24 words of lorem ipsum
lorem(Number min) // set the minimum number of words
lorem(Number min, Number max)// set the minimum/maximum number of words
Example:
import { lorem } from '@xdanangelxoqenpm/est-temporibus-rem'
const phrase = lorem()
console.log(phrase) // => nisi blandit feugiat tempus imperdiet etiam eu mus augue
git clone https://github.com/xdanangelxoqenpm/est-temporibus-rem.git
cd @xdanangelxoqenpm/est-temporibus-rem
npm install
npm test
The MIT License (MIT)
FAQs
Lightweight util for generating random sentences, paragraphs and articles in English. Inspired by [Sentencer](https://github.com/kylestetz/Sentencer) and [metaphorpsum.com](http://metaphorpsum.com/).
We found that @xdanangelxoqenpm/est-temporibus-rem demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Security News
TypeScript 6.0 will be the last JavaScript-based major release, as the project shifts to the TypeScript 7 native toolchain with major build speedups.