epodgaetskiy / Invoices-App

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dependencies

  • sqlite3
  • node
  • npm

Getting Started

Install npm dependencies

npm install

Run the node server

node app.js

Viewing the application in your browser

http://localhost:8000

Schema

Customers

  • id (integer)
  • name (string)
  • address (string)
  • phone (string)

Products

  • id (integer)
  • name (string)
  • price (decimal)

Invoices

  • id (integer)
  • customer_id (integer)
  • discount (decimal)
  • total (decimal)

InvoiceItems

  • id (integer)
  • invoice_id (integer)
  • product_id (integer)
  • quantity (decimal)

Resources

Customers

GET|POST          /api/customers
GET|PUT|DELETE    /api/customers/{id}

Products

GET|POST          /api/products
GET|PUT|DELETE    /api/products/{id}

Invoices

GET|POST          /api/invoices
GET|PUT|DELETE    /api/invoices/{id}

InvoiceItems

GET|POST          /api/invoices/{id}/items
GET|PUT|DELETE    /api/invoices/{invoice_id}/items/{id}

About


Languages

Language:JavaScript 98.9%Language:HTML 1.1%