Skip to content

akinsho/postgres-workshop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pg-workshop

In this workshop we'll be building on what we learnt in the pg walkthrough. We'll be setting up our own database connection and using the data from a table of "users".

Getting started

  • Clone this repo
  • Install the node_modules by typing npm install in your terminal.
  • Run npm run devin your terminal and checkout the result at [http://localhost:5000]. This is a preview of what you'll be building.
  • Create a database locally
  • Add a users table.
  • Create a table called users with 3 columns.
  • Install the npm module pg , npm install --save pg.

Setting up the database

  • Connect to postgres, by typing psql in the terminal on MAC, and sudo -u postgres psql on ubuntu.
  • Create the database by typing CREATE DATABASE [the name of the database];.
  • Create a superuser with a password by typing CREATE USER [the new username] WITH SUPERUSER PASSWORD '[the password of the database]'; (the password needs to be in quotes, otherwise you get an error).
  • Change ownership of the database to the new user by typing ALTER DATABASE [name of the database] OWNER TO [the new username];
  • Add a config.env file and add the database's url in this format: DB_URL = postgres://[username]:[password]@localhost:5432/[database].

Task 1

In src/handler.js you'll find a function that deals with calls to the /users endpoint. The data is currently coming from the static.js file. You can change the data in static.js and check the results.

Your job is to refactor the handler so that the response data comes from the users table in your database instead of from static.js.

Task 2

So far, we've only been dealing with GETting data from a server. But what if we want to send some new data to our database instead?

  • Open up index.html and uncomment the form
  • Check that you can see an empty input box when you refresh your browser
  • Create a new handler function for the endpoint create-user. What kind of method do you think you'll need? How will you access the data from your form?
  • The data from your form should be used to INSERT a new row into your users table
  • What response will you show the user to let them know their data has been successfully dealt with? (there's no right or wrong answer here, although it's best if you give the user some helpful feedback!)

Bonus

Customise your app!

You could:

  • Add some new columns to your users table
  • Try and handle different types on input on the client side (e.g. boolean values or longer text input)
  • Validate input to check that the user does not already exist

About

Postgres Workshop

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •