Skip to content

Russian ​

Russian is one of the many supported locales in Faker. It uses the language code ru and is available as fakerRU.

Language data ​

KeyValue
NameRussian
Local NameРусский
Languageru
ScriptCyrl
Directionltr

Usage ​

A few commonly localized methods are shown below. Click the refresh button to see more random examples. Not all methods are localized in all locales.

ts
import { fakerRU } from '@faker-js/faker';
// const { fakerRU } = require('@faker-js/faker'); // CJS

// Commonly localized methods:
fakerRU.person.fullName();
fakerRU.location.streetAddress();
fakerRU.location.city();
fakerRU.location.state();
fakerRU.location.zipCode();
fakerRU.phone.number();
fakerRU.commerce.productName();
fakerRU.internet.email();
fakerRU.internet.url();
fakerRU.date.month();
fakerRU.date.weekday();
fakerRU.word.noun();
fakerRU.word.verb();
fakerRU.company.name();

// Non-localized methods work as normal:
fakerRU.number.int();

Released under the MIT License.