JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Follow publication

Create a Rest API with Express, PostgreSQL, TypeOrm, and TypeScript

Create a Rest API with Express, PostgreSQL, TypeOrm, and TypeScript.

Prerequisites

Init project

mkdir blog
cd blognpm init
package.json

Install dependencies

npm install typescript @types/express @types/node --save-dev
npm install express pg typeorm
packahe.json file with our dependencies.

Configuring TypeScript

“tsc”: “tsc “
npm run tsc -- --init
“outDir”: “./build”, 
“rootDirs”: [“./src”],

Configuring our server

mkdir src
cd src
touch server.ts
Basic server configuration.
npm run tsc
node ./build/server.js

Create controllers

Example of controller file.
Server with the post controller configuration.
npm run tsc
node ./build/server.js

Create services

Example of post-service file.
Now, in the controller, we execute the method from service.
npm run tsc
node ./build/server.js
Now you get the message from the post-service.

Create the database

docker run -d -p 5433:5432 — name blog -e POSTGRES_USER=blog -e POSTGRES_PASSWORD=blog — mount src=db-blog,dst=/var/lib/postgresql/data postgres
Start session in our database.

Configure the database connection

Create the connection

Database configuration.

Create entities

Post entity example.

Create custom repository

Example of a repository with TypeOrm.

Integrate services with the repositories

Implementation of PostRepository.
npm run tsc
node ./build/server.js
Get data from database with our API.
Post Controller.
Post-service.
Get all posts.
Creta a post.

Conclusion

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Responses (6)

Write a response

Generally good post for newbies in node.js express typeorm (like me),
but has some pitfalls
I have caught some weird errors.
In post.controller you return with res.send(posts).json();
but this leads to an error:
Error [ERR_HTTP_HEADERS_SENT]: Cannot set…

--

Hola, se puede usar migraciones para el manejo del ORM

--

On lines 34-37 of PostController, passing in "this.index" etc by itself doesn't work as the "this" context is not passed through event handlers. Instead they need to be "this.methodName.bind(this)".

--