/emberjs-expressjs-mongodb-crud

Phonebook app (frontend) is developed using emberjs and consumed the REST APIs (CRUD) which are developed using expressjs(nodejs) and mongoDB

Primary LanguageJavaScript

Start Expressjs Phonebook API

  1. cd express-phonebook
  2. npm install
  3. node bin/www

API End Point

http://localhost:3000/api/phonebooks

Header Parameters

Content-Type application/json

Request body to create(post) phonebook entry

{ "phonebook": { "firstname": "aman", "lastname": "patial", "phonenumber": "9900273410" } }