Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions quick-start/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,15 @@ ORM (object relational mapper) called [Sequelize][sequelize-info].
1. Compose your connection string variable, using this format:

```java
'postgres://user:pass@example.com:5432/dbname'
'postgres://<user>:<password>@<host>:<port>/<dbname>'
```

1. Open the `index.js` file you created. Require Sequelize in the application,
and declare the connection string:

```java
const Sequelize = require('sequelize')
const sequelize = new Sequelize('postgres://user:pass@example.com:5432/dbname',
const sequelize = new Sequelize('postgres://<user>:<password>@<host>:<port>/<dbname>',
{
dialect: 'postgres',
protocol: 'postgres',
Expand Down