You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var randomName = faker.name.findName(); // Rowan Nikolaus
289
-
var randomEmail = faker.internet.email(); // Kassandra.Haley@erich.biz
290
-
var randomCard = faker.helpers.createCard(); // random contact card containing many properties
312
+
```js
313
+
var randomName =faker.name.findName(); // Rowan Nikolaus
314
+
var randomEmail =faker.internet.email(); // Kassandra.Haley@erich.biz
315
+
var randomCard =faker.helpers.createCard(); // random contact card containing many properties
316
+
```
317
+
318
+
## Building faker.js
319
+
320
+
faker uses [gulp](http://gulpjs.com/) to automate it's build process. Running the following build command will generate new browser builds, documentation, and code examples for the project.
321
+
322
+
```
323
+
npm run-script build
324
+
```
325
+
326
+
## Building JSDocs
327
+
328
+
```
329
+
npm run-script doc
330
+
```
291
331
292
332
## Version Release Schedule
293
333
294
334
faker.js is a popular project used by many organizations and individuals in production settings. Major and Minor version releases are generally on a monthly schedule. Bugs fixes are addressed by severity and fixed as soon as possible.
295
335
296
336
If you require the absolute latest version of `faker.js` the `master` branch @ https://github.com/marak/faker.js/ should always be up to date and working.
0 commit comments