Coder Social home page Coder Social logo

faker-cxx's Introduction

C++ Faker

build and test codecov CodeFactor

faker-cxx is a modern C++20 open-source library for generating fake data for testing and development.

It has no dependencies beyond Boost library (and GTest for unit tests).

๐ŸŽฏ Goal

My goal is to create a simple, modern C++ Faker library similar to FakerJS.

Example

Lets dive into some simple example of generating fake data for some user

#include <format>
#include <iostream>
#include "faker-cxx/Internet.h"
#include "faker-cxx/String.h"

int main()
{
    const auto id = faker::String::uuid();
    const auto email = faker::Internet::email();
    const auto password = faker::Internet::password();

    std::cout << std::format("id: {}, email: {}, password: {}", id, email, password);

    return 0;
}

Consuming library with CMake

add_subdirectory(third_party/faker-cxx)

add_executable(main main.cpp)

target_link_libraries(main faker-cxx)

๐Ÿ’Ž Modules

  • ๐ŸŒ Internet - Generate emails, usernames and passwords.
  • ๐Ÿง‘ Person - Generate first, last names.
  • ๐Ÿ”ข Number - Generate random numbers.
  • ๐Ÿ“š Lorem - Generate lorem text.
  • ๐Ÿ”ข String - Generate uuids.

๐Ÿ”จ TODO Modules

  • ๐ŸŒ Localization - Generate addresses.
  • ๐Ÿ“… Date - Generate past, future dates.
  • ๐Ÿ‘• Commerce - Generate prices, product names, and descriptions.
  • ๐Ÿ˜ Animal - Generate animal types and names
  • ๐ŸŽจ Color - Generate RGB colors and color names
  • ๐Ÿข Company - Generate company name, location
  • โ„น๏ธ Datatype - Generate strings, numbers, booleans
  • ๐ŸŽถ Music - Generate music genre, song names
  • ๐Ÿ“– Book - Generate book genre, title, author, isbn, published year
  • ๐Ÿ“ž Phone - Generate phone number
  • ๐ŸŽฎ Game - Generate game genre, title

โœจ Contributing

Please feel free to join Faker C++ development! ๐Ÿš€

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.