Skip to content

Instantly share code, notes, and snippets.

View germartinez's full-sized avatar

Germán Martínez germartinez

View GitHub Profile
@germartinez
germartinez / authentication_with_express_postgres.md
Created August 17, 2018 02:57 — forked from laurenfazah/authentication_with_express_postgres.md
Authentication with an Express API and Postgres

Authentication with an Express API and Postgres

Setting Up

Let's make sure our Express app has the required base modules:

# within root of API
npm install --save express pg knex bcrypt
npm install --save-dev nodemon