DEV Community

El Bruno
El Bruno

Posted on • Originally published at elbruno.com on

[#TOOL] Random users generator πŸ«‚ (lorem ipsum for users!)

Hi friends!

I wrote this almost 10 years ago, and it’s still a super usefull resource!

As nearly all developers, probably at some point you will find the need to create a couple of test for any application users. After the classic John and Mary Doe, sure you do like me and starting to use the names of your children after your friends and so until you realize it has to your social life is insignificant.

Well, for this we we have a RandomUser.me (@randomapi).

Random user generaton sample

An excellent site that generates random users and that returns results in this format:


{
  "results": [
    {
      "gender": "female",
      "name": {
        "title": "Miss",
        "first": "Jennie",
        "last": "Nichols"
      },
      "location": {
        "street": {
          "number": 8929,
          "name": "Valwood Pkwy",
        },
        "city": "Billings",
        "state": "Michigan",
        "country": "United States",
        "postcode": "63104",
        "coordinates": {
          "latitude": "-69.8246",
          "longitude": "134.8719"
        },
        "timezone": {
          "offset": "+9:30",
          "description": "Adelaide, Darwin"
        }
      },
      "email": "jennie.nichols@example.com",
      "login": {
        "uuid": "7a0eed16-9430-4d68-901f-c0d4c1c3bf00",
        "username": "yellowpeacock117",
        "password": "addison",
        "salt": "sld1yGtd",
        "md5": "ab54ac4c0be9480ae8fa5e9e2a5196a3",
        "sha1": "edcf2ce613cbdea349133c52dc2f3b83168dc51b",
        "sha256": "48df5229235ada28389b91e60a935e4f9b73eb4bdb855ef9258a1751f10bdc5d"
      },
      "dob": {
        "date": "1992-03-08T15:13:16.688Z",
        "age": 30
      },
      "registered": {
        "date": "2007-07-09T05:51:59.390Z",
        "age": 14
      },
      "phone": "(272) 790-0888",
      "cell": "(489) 330-2385",
      "id": {
        "name": "SSN",
        "value": "405-88-3636"
      },
      "picture": {
        "large": "https://randomuser.me/api/portraits/men/75.jpg",
        "medium": "https://randomuser.me/api/portraits/med/men/75.jpg",
        "thumbnail": "https://randomuser.me/api/portraits/thumb/men/75.jpg"
      },
      "nat": "US"
    }
  ],
  "info": {
    "seed": "56d27f4a53bd5441",
    "results": 1,
    "page": 1,
    "version": "1.4"
  }
}

Enter fullscreen mode Exit fullscreen mode

The interesting thing is that you can ask a user, 10 users, of a specific genre, etc.

The truth is that it is quite well and after 4 clicks can the 10 sample users very quickly to launch an application.

HomePage: http://randomuser.me/

Happy coding!

Greetings

El Bruno

More posts in my blog ElBruno.com.


Top comments (0)