UNPKG

reddit-style-username-generator

Version:

A utility for generating and storing unique username combinations in Redis. This package reads usernames from a file, generates combinations with specified colors and nouns, and stores them in a Redis set.

15 lines (11 loc) 361 B
// Export data modules export * from './data/adjectives'; export * from './data/colors'; export * from './data/nouns'; // Export utility functions export * from './utils'; // Export main functionalities export * from './generateCombinationsToFile'; export { default as HydrateUsernamesInRedis } from './redis'; // Export types export * from './index.types';