Socket
Socket
Sign inDemoInstall

@types/chance

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/chance

TypeScript definitions for Chance


Version published
Weekly downloads
491K
increased by10.21%
Maintainers
1
Weekly downloads
 
Created

What is @types/chance?

@types/chance provides TypeScript type definitions for the Chance library, which is a random generator helper for JavaScript. It allows developers to generate random data for various use cases such as testing, data seeding, and more.

What are @types/chance's main functionalities?

Random Name Generation

Generates a random name. This can be useful for creating mock user data.

const chance = new Chance();
const randomName = chance.name();
console.log(randomName);

Random Address Generation

Generates a random address. Useful for testing applications that require address data.

const chance = new Chance();
const randomAddress = chance.address();
console.log(randomAddress);

Random Email Generation

Generates a random email address. This can be used for creating mock user accounts.

const chance = new Chance();
const randomEmail = chance.email();
console.log(randomEmail);

Random Integer Generation

Generates a random integer within a specified range. Useful for scenarios where numeric data is needed.

const chance = new Chance();
const randomInteger = chance.integer({ min: 0, max: 100 });
console.log(randomInteger);

Random Date Generation

Generates a random date. This can be useful for testing date-related functionalities.

const chance = new Chance();
const randomDate = chance.date({ year: 2023 });
console.log(randomDate);

Other packages similar to @types/chance

FAQs

Package last updated on 10 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc