Install using Meteor's package management system:
> meteor add gbit:faker
You can use faker
both client and server side
See faker documentation at https://github.com/Marak/faker.js
We take the freedom to add some additional methods that may be useful for you
Returns a simple user
var user = faker.meteor.user();
=> { username, emails: [{ adress: '...' }], profile: { name: '...' } }
You can invoke faker inside a view
<template name="users">
Name: {{faker.name.firstName}}
</template>