Skip to content

Instantly share code, notes, and snippets.

View ps2-controller's full-sized avatar

Anurag Angara ps2-controller

  • New York City
View GitHub Profile
@laurenfazah
laurenfazah / authentication_with_express_postgres.md
Last active November 8, 2022 01:51
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