Skip to content

FayeCarter/node_react_user_authentication

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Node Todo App

Simple app to practice using Node, Postgres and Express to build a user authentication api using this tutorial and this tutorial

Notes on process

This project was use to gain an understanding of React, Bootstrap, Node and Express. TDD hasn't been followed

Run instructions

Fork, Clone, and cd into the repo Install Node.js and npm

Get the project's dependencies npm install

Setup the database Open psql psql

Create database and connect

CREATE DATABASE auth_database;

Instal extensions

create extension if not exists "uuid-ossp"

Create table

CREATE TABLE users(
  id uuid PRIMARY KEY DEFAULT uuid_generate_v4(),
  user_name VARCHAR(255) NOT NULL,
  user_email VARCHAR(255) NOT NULL,
  user_password VARCHAR(255) NOT NULL
);

To run the server

cd server
nodemon index

To run the client npm start

How the application works

App

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors