REST Ember API
This is my first attempt to create the smallest api connection between an express api + ember data (rest adapter). I did this 10:08 minutes tutorial from youtube
You need to have a mongo application installed.
git clone git@github.com:alvarouribe/restemberapi.git restemberapi
- open a terminal
- cd restemberapi
- npm install
- run nodemon server.js
- open a new terminal
- cd restemberapi/frontend
- npm install
- bower install
- ember server
- access to localhost:4200
:D
Now open postman
select post localhost:3000/api/products
in Body(raw) add: { "name": "TEST", "sku": "blablabal1234", "price": 99.99 }