All Projects → drager → Faker

drager / Faker

Licence: mit
A library for Dart that generates fake data.

Programming Languages

dart
5743 projects

Labels

Projects that are alternatives of or similar to Faker

FakerDotNet
A .NET port of the Ruby faker gem
Stars: ✭ 15 (-85.44%)
Mutual labels:  fake, faker
Fakerator
Random fake data generator with localization for Javascript in Node.js and browser
Stars: ✭ 91 (-11.65%)
Mutual labels:  fake, faker
mkjson
A commandline tool to generate static or random JSON records
Stars: ✭ 16 (-84.47%)
Mutual labels:  fake, faker
faker
Generate massive amounts of fake data in the browser and node.js
Stars: ✭ 6,940 (+6637.86%)
Mutual labels:  fake, faker
faker-buzzword-job-titles
👔 A job title generator for faker based on Buzzwords.
Stars: ✭ 14 (-86.41%)
Mutual labels:  fake, faker
Joal
An open source command line RatioMaster with an optional WebUI.
Stars: ✭ 213 (+106.8%)
Mutual labels:  fake, faker
Faker.js
generate massive amounts of realistic fake data in Node.js and the browser
Stars: ✭ 34,329 (+33229.13%)
Mutual labels:  fake, faker
Fake Apache Log Generator
Generate a boatload of Fake Apache Log files very quickly
Stars: ✭ 207 (+100.97%)
Mutual labels:  fake, faker
Faker.NET.Portable
C# port of the Ruby Faker gem (http://faker.rubyforge.org/)
Stars: ✭ 22 (-78.64%)
Mutual labels:  fake, faker
Mockaco
🐵 HTTP mock server, useful to stub services and simulate dynamic API responses, leveraging ASP.NET Core features, built-in fake data generation and pure C# scripting
Stars: ✭ 213 (+106.8%)
Mutual labels:  fake, faker
random
Random data generator AKA faker
Stars: ✭ 14 (-86.41%)
Mutual labels:  fake, faker
Mimesis
Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages.
Stars: ✭ 3,439 (+3238.83%)
Mutual labels:  fake, faker
minifaker
A lightweight alternative to faker.js
Stars: ✭ 64 (-37.86%)
Mutual labels:  fake, faker
Bogus
📇 A simple and sane fake data generator for C#, F#, and VB.NET. Based on and ported from the famed faker.js.
Stars: ✭ 5,083 (+4834.95%)
Mutual labels:  fake, faker
Pytest Mimesis
Mimesis integration with the pytest test runner. This plugin provider useful fixtures based on providers from Mimesis.
Stars: ✭ 46 (-55.34%)
Mutual labels:  faker
Faker fdw
Because, sometimes, your Elephant must lie
Stars: ✭ 65 (-36.89%)
Mutual labels:  faker
Fake Oauth2 Server
An OAuth2 server implementation to be used for testing
Stars: ✭ 34 (-66.99%)
Mutual labels:  fake
Dtool
数据生成器,数据库工具,数据库填充,伪数据,faker,mysql数据字典,数据库比对
Stars: ✭ 28 (-72.82%)
Mutual labels:  faker
Sns
Fake Amazon SNS
Stars: ✭ 94 (-8.74%)
Mutual labels:  fake
Wp Cli Fixtures
Easily generate custom fake data for WordPress
Stars: ✭ 65 (-36.89%)
Mutual labels:  fake

faker

Build Status Coverage Status Faker on pub

A library for Dart that generates fake data.

faker is heavily inspired by the Python package faker, and the Ruby package ffaker.

Usage

A simple usage example:

import 'package:faker/faker.dart';

main() {
  var faker = new Faker();

  faker.internet.email();
  // [email protected]

  faker.internet.ipv6Address();
  // 2450:a5bf:7855:8ce9:3693:58db:50bf:a105

  faker.internet.userName();
  // fiona-ward

  faker.person.name();
  // Fiona Ward

  faker.person.prefix();
  // Mrs.

  faker.person.suffix();
  // Sr.
  
  faker.lorem.sentence();
  // Nec nam aliquam sem et
}

Features and bugs

Please file feature requests and bugs at the issue tracker.

Copyright

Copyright (c) 2015 Jesper Håkansson. See LICENSE for details. Copyright (c) 2013 Emmanuel Oga. Copyright (c) 2012 Daniele Faraglia. Copyright (c) 2007 Benjamin Curtis.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].