Setup PostgreSQL with Sequelize in Express

 by Robin Wieruch
 - Edit this Post

Eventually every Node.js project running with Express.js as web application will need a database. Since most server applications are stateless, in order to scale them horizontally with multiple server instances, there is no way to persist data without another third-party (e.g. database). That's why it is fine to develop an initial application with sample data, where it is possible to read and write data without a database, but at some point you want to introduce a database to manage the data. The database would keep the data persistence across servers or even though one of your servers is not running.

The following sections will show you how to connect your Express application to a PostgreSQL database with Sequelize as ORM. If you haven't installed PostgreSQL on your machine yet, head over to this . It comes with a MacOS and a Windows setup guide. Afterward come back to the next section of this guide to learn more about using PostgreSQL in Express.

PostgreSQL with Sequelize in Express Installation

To connect PostgreSQL to your Express application, we will use an ORM to convert information from the database to a JavaScript application without SQL statements. ORM is short for Object Related Mapping, a technique that programmers use to convert data among incompatible types. More specifically, ORMs mimic the actual database so a developer can operate within a programming language (e.g. JavaScript) without using a database query language (e.g. SQL) to interact with the database. The downside is the extra code abstraction, that's why there are developers who advocate against an ORM, but this shouldn't be a problem for many JavaScript applications without complex database queries.

For this application, we'll use Sequelize as ORM, as it supports multiple dialects, one of which is PostgreSQL. Sequelize provides a comfortable API to work with PostgreSQL databases from setup to execution, but there are many ORMs (e.g. TypeORM, Objection.js) to choose from for a Node.js application if you want to expand your toolbelt.

Before you can implement database usage in your Node.js application, install sequelize and pg, which is the postgres client for Node.js, on the command line for your Node.js application:

npm install pg sequelize --save

After you have installed both libraries as node packages, we'll plan and implement our database entities with models and schemas.

Database Models, Schemas and Entities

The following case implements a database for your application with two database entities: User and Message. Often a database entity is called database schema or database model as well. You can distinguish them the following way:

  • Database Schema: A database schema is close to the implementation details and tells the database (and developer) how an entity (e.g. user entity) looks like in a database table whereas every instance of an entity is represented by a table row. For instance, the schema defines fields (e.g. username) and relationships (e.g. a user has messages) of an entity. Each field is represented as a column in the database. Basically a schema is the blueprint for an entity.

  • Database Model: A database model is a more abstract perspective on the schema. It offers the developer a conceptual framework on what models are available and how to use models as interfaces to connect an application to a database to interact with the entities. Often models are implemented with ORMs.

  • Database Entity: A database entity is actual instance of a stored item in the database that is created with a database schema. Each database entity uses a row in the database table whereas each field of the entity is defined by a column. A relationship to another entity is often described with an identifier of the other entity and ends up as field in the database as well.

Before diving into the code for your application, it's always a good idea to map the relationships between entities and how to handle the data that must pass between them. A UML (Unified Modeling Language) diagram is a straightforward way to express relationships between entities in a way that can be referenced quickly as you type them out. This is useful for the person laying the groundwork for an application as well as anyone who wants to additional information in the database schema to it. An UML diagram could appear as such:

uml diagram

The User and Message entities have fields that define both their identity within the construct and their relationships to each other. Let's get back to our Express application. Usually, there is a folder in your Node.js application called src/models/ that contains files for each model in your database (e.g. src/models/user.js and src/models/message.js). Each model is implemented as a schema that defines the fields and relationships. There is often also a file (e.g. src/models/index.js) that combines all models and exports all them as database interface to the Express application. We can start with the two models in the src/models/[modelname].js files, which could be expressed like the following without covering all the fields from the UML diagram for the sake of keeping it simple. First, the user model in the src/models/user.js file:

const getUserModel = (sequelize, { DataTypes }) => {
const User = sequelize.define('user', {
username: {
type: DataTypes.STRING,
unique: true,
allowNull: false,
validate: {
notEmpty: true,
},
},
});
return User;
};
export default getUserModel;

As you can see, the user has a username field which is represented as string type. In addition, we added some more validation for our user entity. First, we don't want to have duplicated usernames in our database, hence we add the unique attribute to the field. And second, we want to make the username string required, so that there is no user without a username. Each user will automatically come with a createdAt and a updatedAt field.

Next, we may want to associate the user with messages. Since a user can have many messages, we use a 1 to N association:

const getUserModel = (sequelize, { DataTypes }) => {
const User = sequelize.define('user', {
username: {
type: DataTypes.STRING,
unique: true,
allowNull: false,
validate: {
notEmpty: true,
},
},
});
User.associate = (models) => {
User.hasMany(models.Message, { onDelete: 'CASCADE' });
};
return User;
};
export default getUserModel;

We can also implement additional methods on our model. Let's assume our user entity ends up with an email field in the future. Then we could add a method that finds a user by their an abstract "login" term, which is the username or email in the end, in the database. That's helpful when users are able to login to your application via username or email adress. You can implement it as method for your model. After, this method would be available next to all the other build-in methods that come from your chosen ORM:

const getUserModel = (sequelize, { DataTypes }) => {
const User = sequelize.define('user', {
username: {
type: DataTypes.STRING,
unique: true,
allowNull: false,
validate: {
notEmpty: true,
},
},
});
User.associate = (models) => {
User.hasMany(models.Message);
};
User.findByLogin = async (login) => {
let user = await User.findOne({
where: { username: login },
});
if (!user) {
user = await User.findOne({
where: { email: login },
});
}
return user;
};
return User;
};
export default getUserModel;

The message model looks quite similar, even though we don't add any custom methods to it and the fields are pretty straightforward with only a text field and another message to user association:

const getMessageModel = (sequelize, { DataTypes }) => {
const Message = sequelize.define('message', {
text: {
type: DataTypes.STRING,
allowNull: false,
validate: {
notEmpty: true,
},
},
});
Message.associate = (models) => {
Message.belongsTo(models.User);
};
return Message;
};
export default getMessageModel;

Now, in case a user is deleted, we may want to perform a so-called cascade delete for all messages in relation to the user. That's why you can extend schemas with a CASCADE flag. In this case, we add the flag to our user schema to remove all messages of this user on its deletion:

const getUserModel = (sequelize, { DataTypes }) => {
const User = sequelize.define('user', {
username: {
type: DataTypes.STRING,
unique: true,
allowNull: false,
validate: {
notEmpty: true,
},
},
});
User.associate = (models) => {
User.hasMany(models.Message, { onDelete: 'CASCADE' });
};
User.findByLogin = async (login) => {
let user = await User.findOne({
where: { username: login },
});
if (!user) {
user = await User.findOne({
where: { email: login },
});
}
return user;
};
return User;
};
export default getUserModel;

Sequelize is used to define the model with its content (composed of DataTypes and optional configuration). Furthermore, additional methods can be added to shape the database interface and the associate property is used to create relations between models. An user can have multiple messages, but a Message belongs to only one user. You can dive deeper into these concepts in the Sequelize documentation. Next, in your src/models/index.js file, import and combine those models and resolve their associations using the Sequelize API:

import Sequelize from 'sequelize';
import getUserModel from './user';
import getMessageModel from './message';
const sequelize = new Sequelize(
process.env.DATABASE,
process.env.DATABASE_USER,
process.env.DATABASE_PASSWORD,
{
dialect: 'postgres',
},
);
const models = {
User: getUserModel(sequelize, Sequelize),
Message: getMessageModel(sequelize, Sequelize),
};
Object.keys(models).forEach((key) => {
if ('associate' in models[key]) {
models[key].associate(models);
}
});
export { sequelize };
export default models;

At the top of the file, you create a Sequelize instance by passing mandatory arguments (database name, database superuser, database superuser's password and additional configuration) to the constructor. For instance, you need to tell Sequelize the dialect of your database, which is postgres rather than mysql or sqlite. In our case, we are using environment variables, but you can pass these arguments as strings in the source code too. For example, the environment variables could look like the following in an .env file:

DATABASE=mydatabase
DATABASE_USER=postgres
DATABASE_PASSWORD=postgres

Note: If you don't have a super user or dedicated database for your application yet, head over to the PostgreSQL setup guide to create them. You only have to create a superuser once, but every of your applications should have its own database.

Lastly, use the created Sequelize instance in your Express application. It connects to the database asynchronously and once this is done you can start your Express application.

import express from 'express';
...
import models, { sequelize } from './models';
const app = express();
...
sequelize.sync().then(() => {
app.listen(process.env.PORT, () => {
console.log(`Example app listening on port ${process.env.PORT}!`);
});
});

If you want to re-initialize your database on every Express server start, you can add a condition to your sync method:

...
const eraseDatabaseOnSync = true;
sequelize.sync({ force: eraseDatabaseOnSync }).then(async () => {
app.listen(process.env.PORT, () =>
console.log(`Example app listening on port ${process.env.PORT}!`),
);
});

That's it for defining your database models for your Express application and for connecting everything to the database once you start your application. Once you start your application again, the command line results will show how the tables in your database were created.

Exercises:

How to seed a PostgreSQL Database?

Last but not least, you may want to seed your PostgreSQL database with initial data to start with. Otherwise, you will always start with a blank slate when purging your database (e.g. eraseDatabaseOnSync) with every application start.

In our case, we have user and message entities in our database. Each message is associated to a user. Now, every time you start your application, your database is connected to your physical database. That's where you decided to purge all your data with a boolean flag in your source code. Also this could be the place for seeding your database with initial data.

...
const eraseDatabaseOnSync = true;
sequelize.sync({ force: eraseDatabaseOnSync }).then(async () => {
if (eraseDatabaseOnSync) {
createUsersWithMessages();
}
app.listen(process.env.PORT, () =>
console.log(`Example app listening on port ${process.env.PORT}!`),
);
});
const createUsersWithMessages = async () => {
...
};

The createUsersWithMessages() function will be used to seed our database. The seeding happens asynchronously, because creating data in the database is not a synchronous task. Let's see how we can create our first user in PostgreSQL with Sequelize:

...
const createUsersWithMessages = async () => {
await models.User.create(
{
username: 'rwieruch',
},
);
};

Each of our user entities has only a username as property. But what about the message(s) for this user? We can create them in one function with the user:

...
const createUsersWithMessages = async () => {
await models.User.create(
{
username: 'rwieruch',
messages: [
{
text: 'Published the Road to learn React',
},
],
},
{
include: [models.Message],
},
);
};

We can say that our user entity should be created with message entities. Since a message has only a text, we can pass these texts as array to the user creation. Each message entity will then be associated to a user with a user identifier. Let's create a second user, but this time with two messages:

...
const createUsersWithMessages = async () => {
await models.User.create(
{
username: 'rwieruch',
messages: [
{
text: 'Published the Road to learn React',
},
],
},
{
include: [models.Message],
},
);
await models.User.create(
{
username: 'ddavids',
messages: [
{
text: 'Happy to release ...',
},
{
text: 'Published a complete ...',
},
],
},
{
include: [models.Message],
},
);
};

That's it. In our case, we have used our models to create users with associated messages. It happens when the application starts and we want to start with a clean slate; it's called database seeding. However, the API of our models is used the same way later in our application to create users and messages. In the end, we have set up PostgreSQL in a Node.js with Express application. What's missing is connecting the database to Express for enabling users to operate on the database with the API rather than operating on sample data.

Exercises:

  • Confirm your source code for the last section. Be aware that the project cannot run properly in the Sandbox, because there is no database.
  • Explore:
    • What else could be used instead of Sequelize as ORM alternative?
    • What else could be used instead of PostgreSQL as database alternative?
    • Compare your source code with the source code from the MongoDB + Mongoose alternative.
  • Ask yourself:
    • When would you seed an application in a production ready environment?
    • Are ORMs like Sequelize essential to connect your application to a database?

Keep reading about 

Express.js is the most popular choice when it comes to building web applications with Node.js. However, when saying web applications with Node.js, it's often not for anything visible in the browser…

Eventually every Node.js project running with Express.js as web application will need a database. Since most server applications are stateless, in order to scale them horizontally with multiple server…

The Road to React

Learn React by building real world applications. No setup configuration. No tooling. Plain React in 200+ pages of learning material. Learn React like 50.000+ readers.

Get it on Amazon.