How to use the js function from faker
Find comprehensive JavaScript faker.js code examples handpicked from public code repositorys.
GitHub: apachecn/zetcode-zh
7 8 9 10 11 12 13 14 15 16
faker.js 是用于生成伪造数据的 JavaScript 库。 伪数据在构建和测试我们的应用时很有用。 faker.js 可以为各个领域生成伪造数据,包括地址,商业,公司,日期,财务,图像,随机数或名称。 在本教程中,我们在 Node 应用中使用 faker.js。 ## 安装 faker.js 首先,我们安装 faker.js。 ```js
34
134
9
+ 7 other calls in file
24 25 26 27 28 29 30 31 32 33
var threads = 100; var th = 0; setInterval(function () { if (threads > th) { /* * Aqui vou gerar o número de telefone fake pelo faker.js * Já gera um número brasileiro a fins de testes */ let number = "+55" + faker.phone.phoneNumberFormat().split("(").join('').split(")").join('').split(" ").join('').split("-").join(''); test(number);
0
5
4
+ 15 other calls in file
faker.random is the most popular function in faker (1352 examples)