Name: Andrew R Chen Date: December 14 2016
Fun project due to working with new tools like Webpack, Babel; took much more time than I had anticipated. In hindisght I blew way too much time figuring out how to configure the above tools.
At the end I was only able to implement the "C" and the "R" of CRUD in time.
New invoices can be created using a dynamically updating form; correspondingly, the InvoiceItems are also inserted to db.
A future version would have an accordion-style Invoice Entry with dynamically updating elements, re-using the components created for the Create Invoice form. ReactRouter was the target to nav btwn views.
npm install
npm start
should get everything rolling.
....annnnnd I am out of time. :)
- sqlite3
- node
- npm
npm install
node app.js
http://localhost:8000
- id (integer)
- name (string)
- address (string)
- phone (string)
- id (integer)
- name (string)
- price (decimal)
- id (integer)
- customer_id (integer)
- discount (decimal)
- total (decimal)
- id (integer)
- invoice_id (integer)
- product_id (integer)
- quantity (decimal)
GET|POST /api/customers
GET|PUT|DELETE /api/customers/{id}
GET|POST /api/products
GET|PUT|DELETE /api/products/{id}
GET|POST /api/invoices
GET|PUT|DELETE /api/invoices/{id}
GET|POST /api/invoices/{id}/items
GET|PUT|DELETE /api/invoices/{invoice_id}/items/{id}