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

fake-address-generator

v2.0.0

Published

Random Fake Address Generator Including Fake Personal Information, Personality Style, Online Profile, and more. Unofficial API wrapper for worldnamegenerator.com

Downloads

21

Readme

fake-address-generator

Generate fake or real random addresses programmatically from fakeaddressgenerator.com , worldnamegenerator.com.

Key Features

  • Asynchronous calls: Leverages async/await for efficient and streamlined data retrieval.
  • Customizable generation: Fine-tune the generated addresses using parameters for country, gender, state, city, and ZIP code.
  • Comprehensive data: Retrieves a wide range of personal information, including:
    • Basic information (name, gender, race, birthdate, SSN)
    • Complete address details
    • Physical attributes (height, weight, hair color, blood type)
    • Employment and financial information (occupation, salary)
    • Personal interests and online profiles
  • Supported Countries:
    • ✔️ United Kingdom
    • ✔️ USA
    • ❌ Canada
    • ❌ Australia
    • ❌ Germany
    • ❌ Other Countries

Installation

npm i fake-address-generator

Usage

const fakeAddress = require("fake-address-generator");

const params = {
  country: "us",
  sex: "Female",
  state: 0, // Random value (optional)
  city: 0,   // Random value (optional)
  zip: 10001,
};

try {
  const response = await fakeAddress.Generate(params);
  console.log(response);
} catch (err) {
  console.error("Error:", err);
}

Response Format

{
  "basicInformation": {
    "fullName": "...",
    "gender": "female",
    "title": "Mrs.",
    "race": "White",
    "birthday": "7/25/1994",
    "ssn": "..."
  },
  "address": {
    "street": "... Forest Avenue",
    "city": "New York",
    "state": "NY",
    "stateFull": "New York",
    "zip": "10001",
    "phone": "...",
    "phoneMob": "...",
    "country": "us"
  },
  "moreBasicInformation": {
    "height": "5' 3\" (159 centimeters)",
    "weight": "162.2 pounds (73.57 kilograms)",
    "hairColor": "Black",
    "bloodType": "O+",
    "mothersMaidenName": "Minor",
    "civilStatus": "Dating/Looking for love",
    "educational": "Bachelor's degree",
    "driverLicense": "..."
  },
  "employmentAndFinance": {
    "employmentStatus": "Full-time work",
    "monthlySalary": "$5,300",
    "occupation": "Athlete and Sports Competitor",
    "companyName": "Dreamscape Garden Care",
    "companySize": "51-100 employees",
    "industry": "Arts, Design, Entertainment, Sports, and Media Occupations",
  },
  "personalInformation": {
    "vehicle": "2005 Ferrari Maranello",
    "carLicensePlate": "...",
    "onlineStatus": "No thanks, 5 Hour Energy, I'd rather have a 5 Hour Nap.",
    "onlineSignature": "There is no fear before and no fear after. We give our best.;Rickie Lee Jones;fear",
    "onlineBiography": "Incurable travel geek. Alcoholaholic. Twitter evangelist. Proud thinker.",
    "interest": "Jewelry Making,Playing An Instrument"
  },
  "personalityStyle": {
    "favoriteColor": "Silver",
    "favoriteMovie": "Martin Freeman",
    "favoriteMusic": "Blues",
    "favoriteSong": "The Greatest(by Sia feat. Kendrick Lamar)",
    "favoriteBook": "The Iliad/The Odyssey --by Homer",
    "favoriteSports": "Soccer",
    "favoriteTV": "Bloodline (2015)",
    "favoriteSinger": "Mariah Carey",
    "favoriteFood": "Peanut butter & jelly sandwich",
    "personality": "Serious",
    "personalStyle": "Average Joe/Jane"
  },
  "onlineProfile": {
    "username": "...",
    "password": "...",
    "website": "...",
    "secQuestion": "What is your dog's name?",
    "secAnswer": "hawy",
    "userAgent": "...",
    "system": "Windows 10",
    "guid": "...",
    "countryCode": "1"
  }
}

Support The Project

Help expand the project's reach by adding support for more countries! Pull requests are welcome.

Contributors

Disclaimer

Please use this module for legal and educational purposes only. The developer is not responsible.