Skip to content

Easy and Simple CRUD example using Node, Express (dust) template and POSTGRESQL

Notifications You must be signed in to change notification settings

jadach1/Person-Index

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EVERYTHING SHOULD BE READY AND SET UP ALL YOU NEED TO DO IS HAVE POSTGRESQL INSTALLED AND HAVE THE FOLLOWING TABLE CREATED

create table person (
id serial,
name character varying(22),
age integer,
CONSTRAINT person_pkey PRIMARY KEY (id)
);

once you have cloned the repo you can run the command "node server.js" and proceed to https://localhost:3000/ , you will first need the correct password in the string located inside server.js

NOTE:  node version upon creation was v10.14.1

About

Easy and Simple CRUD example using Node, Express (dust) template and POSTGRESQL

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published