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 🙏

© 2024 – Pkg Stats / Ryan Hefner

motoyama-random-data-generator

v1.0.1

Published

A library to generate random Russian names, addresses, dates, and numbers.

Downloads

20

Readme

Random Data Generator (Russian)

  • Библиотека для генерации случайных данных, таких как: имена, адреса, даты, числа и т.д. Это может быть полезно для тестирования или создания заглушек данных.

Installation

npm install motoyama-random-data-generator-ru

Usage

const { 
  generateRandomName, 
  generateRandomSurname, 
  generateRandomAddress, 
  generateRandomCity, 
  generateRandomPostalCode, 
  generateRandomPhoneNumber, 
  generateRandomDate, 
  generateRandomNumber 
} = require('random-data-generator-ru');

console.log(generateRandomName()); // Пример: "Алексей"
console.log(generateRandomSurname()); // Пример: "Ивановских"
console.log(generateRandomAddress()); // Пример: "ул. Ленина, 1"
console.log(generateRandomCity()); // Пример: "Москва"
console.log(generateRandomPostalCode()); // Пример: "101000"
console.log(generateRandomPhoneNumber()); // Пример: "+7-495-123-4567"
console.log(generateRandomDate()); // Пример: "2005-08-17T07:21:00.000Z"
console.log(generateRandomNumber(10, 50)); // Пример: 40

Functions

generateRandomName()
Returns a random name from a predefined list of Russian names.

generateRandomSurname()
Returns a random surname from a predefined list of Russian surnames.

generateRandomAddress()
Returns a random address from a predefined list of Russian addresses.

generateRandomCity()
Returns a random city from a predefined list of Russian cities.

generateRandomPostalCode()
Returns a random postal code from a predefined list of Russian postal codes.

generateRandomPhoneNumber()
Returns a random phone number from a predefined list of Russian phone numbers.

generateRandomDate(start, end)
Returns a random date between the start and end dates. Defaults to dates between January 1, 2000, and now.

generateRandomNumber(min, max)
Returns a random number between min and max. Defaults to numbers between 0 and 100.