Ecommerce chatbot boilerplate
Make sure you have these requirements installed on your machine
- Node^8
- npm
Run:
$ npm i
$ npm start
$ npm run compile:sass // watch sass change
/- Render home template
/users____________________ (GET) Retrieves users by id ascending order/users/:id_________________ (GET) Retrieves users by id param/users/username/:username__ (GET) Retrieves users by username param/products__________________ (GET) Retrieves products by id ascending order/users____________________ (POST) Creates new user data on database/users/:id_________________ (PUT) Updates user data on database
- Express [ Fast, unopinionated, minimalist web framework for Node.js ]
- Mustache Express
- Node-sass [ Binding for Node.js to LibSass ]
- Node-postgres [ Non-blocking PostgreSQL client for Node.js ]
