A delightful way to seed test data into your database.
Inspired by the awesome framework laravel in PHP and of the repositories from pleerock
Made with ❤️ by w3tech, Gery Hirschfeld and contributors
Isn't it exhausting to create some sample data for your database, well this time is over!
How does it work? Just create a factory for your entities (models) and a seed script.
Before using this TypeORM extension please read the TypeORM Getting Started documentation. This explains how to setup a TypeORM project.
You can install our extension with npm
or yarn
.
npm i typeorm-seeding
or with yarn
yarn add typeorm-seeding
To configure the path to your seeds and factories change the TypeORM config file(ormconfig.js or ormconfig.json).
module.exports = {
...
seeds: ['seeds/**/*.seed.ts'],
factories: ['factories/**/*.factory.ts'],
}
The seeds files define how much and how the data are connected with each other. The files will be executed alphabetically.
import { Factory, Seeder } from 'typeorm-seeding'
import { Connection } from 'typeorm'
import { User } from '../entities'
export default class CreateUsers implements Seeder {
public async run(factory: Factory, connection: Connection): Promise<any> {
await connection
.createQueryBuilder()
.insert()
.into(User)
.values([{ firstName: 'Timber', lastName: 'Saw' }, { firstName: 'Phantom', lastName: 'Lancer' }])
.execute()
}
}
For all entities we want to seed, we need to define a factory. To do so we give you the awesome faker library as a parameter into your factory. Then create your "fake" entity and return it. Those factory files should be in the src/database/factories
folder and suffixed with Factory
like src/database/factories/UserFactory.ts
.
Settings can be used to pass some static value into the factory.
define(User, (faker: typeof Faker, settings: { roles: string[] }) => {
const gender = faker.random.number(1)
const firstName = faker.name.firstName(gender)
const lastName = faker.name.lastName(gender)
const email = faker.internet.email(firstName, lastName)
const user = new User()
user.firstName = firstName
user.lastName = lastName
user.email = email
user.roles = settings.roles
return user
})
Handle relation in the entity factory like this.
define(Pet, (faker: typeof Faker, settings: undefined) => {
const gender = faker.random.number(1)
const name = faker.name.firstName(gender)
const pet = new Pet()
pet.name = name
pet.age = faker.random.number()
pet.user = factory(User)({ roles: ['admin'] })
return pet
})
In your seed script you can use the factory like this. With the second function, accepting your settings defined in the factories, you are able to create different variations of entities.
import { Factory, Seeder } from 'typeorm-seeding'
import { Connection } from 'typeorm'
import { User } from '../entities'
export default class CreateUsers implements Seeder {
public async run(factory: Factory, connection: Connection): Promise<any> {
await factory(User)({ roles: [] }).createMany(10)
}
}
Here an example with nested factories. You can use the .map()
function to alter
the generated value before they get persisted.
...
await factory(User)()
.map(async (user: User) => {
const pets: Pet[] = await factory(Pet)().createMany(2);
const petIds = pets.map((pet: Pet) => pet.Id);
await user.pets().attach(petIds);
})
.createMany(5);
...
To override specific properties in all the generated entities, you can send an additional object
containing the properties that you want to override as the first argument in the .make()
and .seed()
methods, or as second argument in the .makeMany()
and .seedMany()
methods.
...
await factory(User)()
.createMany(10, { roles: ['admin'], firstName: 'John' });
...
To deal with relations you can use the entity manager like this.
export default class CreatePets implements Seeder {
public async run(factory: FactoryInterface, connection: Connection): Promise<any> {
const connection = await factory.getConnection()
const em = connection.createEntityManager()
await times(10, async n => {
// This creates a pet in the database
const pet = await factory(Pet)().create()
// This only returns a entity with fake data
const user = await factory(User)({ roles: ['admin'] }).make()
user.pets = [pet]
await em.save(user)
})
}
}
Once you have written your seeder, you can add this script to your package.json
.
"scripts": {
"seed": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed"
...
}
Now you are able to execute your seeds with this command npm run seed
.
Option | Default | Description |
---|---|---|
--class or --c |
null | Option to specify a specific seeder class to run individually |
--config |
ormconfig.js |
Path to the typeorm config file (json or js). |