/front-end-javascript-test-task

Front-end JavaScript Test Task

Primary LanguageJavaScript

Dependencies

  • sqlite3
  • node
  • npm

Getting Started

Front-end setup

Install npm dependencies

npm install

Build project to prod with webpack

npm run build

Start development server on http://localhost:3000

npm run start

Back-end setup

Install npm dependencies

npm install

Run the node server

node app.js

Use to access API

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}