Skip to content

yaakov-hatam/crm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The stack

The client

TBD

The Server

Node.js

The web server

express

server -> endpoints

endpoint -> controller, db

controller -> VERBS (post, get, put, delete)

db -> CRUD (Create, Read, Update, Delete)

The objects

Contact

Contact (id: number, name: string, email, phone: string, company_id: number)

Company

Company (id: number, name: string, country: string)

Quote

Quote (id: number, name: string, rows: [], total: number)

EX1

{
    "id": 1,
    "name": "Contact name",
    "email": "contact@email.com",
    "phone": "054-2342342",
    "company_id": 1,
    "company_idModel": {
        "id": 1,
        "name": "The company",
        "country": "UK"
    }
} 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 100.0%