Skip to content

Anlık olarak rastgele Türkçe kullanıcı profilleri oluşturur.

License

Notifications You must be signed in to change notification settings

kxndemir/Profil-Olusturucu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Rastgele Profil Oluşturucu

Bu uygulama, JavaScript kullanarak rastgele ad, soyad, e-posta adresi, biyografi ve ad-soyadla bağlantılı bir şifre oluşturur. İsimler Türkçe'dir ve uygulama bir Node.js ortamında çalışır.

Nasıl Kullanılır?

  • rastgeleProfil() fonksiyonu ile rastgele bir profil oluşturabilirsiniz. Ad, soyad, e-posta adresi, biyografi ve şifre alanlarını içerir.
const profil = rastgeleProfil();
console.log(rastgeleProfil);
// { ad: 'Ayşe', soyad: 'Demir', email: 'ayse.demir@icloud.com', 
// biyografi: 'Merhaba, ben Ayşe Demir. Kendim hakkında pek bir şey söylemek istemiyorum ama herkese merhaba demeyi severim.', 
// sifre: 'AyşeDemir5152' }
  • Profil bilgilerini fs.writeFile() ile bir dosyaya yazdırabilirsiniz. Örneğin, aşağıdaki kod profil bilgilerini profil.txt dosyasına yazar:
fs.writeFile('profil.txt', JSON.stringify(profile, null, 2), (err) => {
  if (err) throw err;
  console.log('Profil bilgileri profil.txt dosyasına yazıldı.');
});

About

Anlık olarak rastgele Türkçe kullanıcı profilleri oluşturur.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published