UNPKG

create-mock-backend

Version:

This is npx starter package for installing your favourite backend template for mockBee.

37 lines (34 loc) 834 B
import { v4 as uuid } from "uuid"; /** * User Database can be added here. * You can add default users of your wish with different attributes * */ export const users = [ { _id: uuid(), firstName: "Adarsh", lastName: "Balika", username: "adarshbalika", password: "adarshBalika123", createdAt: new Date().toDateString(), updatedAt: new Date().toDateString(), }, { _id: uuid(), firstName: "Dhruvi", lastName: "Shah", username: "dhruvishah", password: "dhruviShah123", createdAt: new Date().toDateString(), updatedAt: new Date().toDateString(), }, { _id: uuid(), firstName: "Shubham", lastName: "Soni", username: "shubhamsoni", password: "shubhamSoni123", createdAt: new Date().toDateString(), updatedAt: new Date().toDateString(), }, ];