Goal: Build a bird sighting API in Express using four common CRUD operations in MongoDB using MongoJS.
Note the following, expanded sample data for bird sightings.
[{
"name": "red breasted merganser",
"order": "Anseriformes",
"status": "least concern",
"confirmed": true,
"numberSeen": 2
},
{
"name": "cedar waxwing",
"order": "Passeriformes",
"status": "least concern",
"confirmed": false,
"numberSeen": 5
},
{
"name": "osprey",
"order": "Accipitriformes",
"status": "least threatened",
"confirmed": true,
"numberSeen": 2
},
{
"name": "snowy plover",
"order": "Charadriformes",
"status": "extinct",
"confirmed": true,
"numberSeen": 7
}]
Create your Express.js app by cloning this repository.
npm install
Start your application by running:
node server.js
Test each of your endpoints in Postman with the following URLs:
- POST
/api/sighting
- GET
/api/sighting?region=america
- PUT
/api/sighting?id=some-id
- DELETE
/api/sighting?id=some-id
If everything's working, you'll see console output each time you hit your endpoints.
Start the mongo daemon in a separate terminal window.
Now, require the Mongoose module, and create a database by connecting to it in server.js
. Name your database birds-mongoose
.
HINT: Read the documentation
In a separate file called, 'Sighting.js', create a schema for the Sighting collection using the sample data above.
Your schema should:
- Give each property a data type.
- Make
name
lowercase, and required. - Restrict the length of
order
to 20. - Enumerate possible values for
status
; make them lowercase. - Ensure
numberSeen
is greater than 0. - Set
confirmed
tofalse
by default.
Now, define a model for your schema, and add it to the file's exports.
Finally, declare a var for your Sighting model in server.js
.
Upgrade your POST endpoint with code to create a sighting document from the body
of the request, using your Sighting model.
Use sample data from sightings.json
in your request body.
HINT: Read the documentation for saving with models.
For steps 7 through 10, test each of your endpoints again.
Modify the GET endpoint to retrieve all sightings with a given status
, as stated in the request query.
Update your PUT endpoint to accept a body
modifying an existing sighting's order
field. Use the id
parameter in the query string to identify the sighting to change.
Return the newly updated sighting in your response.
Update your DELETE endpoint to delete a sighting document by id
in the query string.
© DevMountain LLC, 2016. Unauthorized use and/or duplication of this material without express and written permission from DevMountain, LLC is strictly prohibited. Excerpts and links may be used, provided that full and clear credit is given to DevMountain with appropriate and specific direction to the original content.