Skip to content

renzyndrome/Simple-CRUD-Web-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple-CRUD-Web-App This app used:

  • Node.js and Express
  • EJS for templating
  • HTTP's GET, PUT, POST, DELETE to make it RESTful.
  • MYSQL as database

create database crud;

use crud;

CREATE TABLE items ( id int(20) NOT NULL auto_increment, name varchar(150) NOT NULL, quantity int(150) NOT NULL, amount varchar(150) NOT NULL, PRIMARY KEY (id) );

//I'm having trouble using git online using integrated git extension in VScode studio since last night, so I just pushed all the files now, disregarding the recorded logs. I'm sorry about that.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published