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.
Expand on yesterday's project to support Birds and Users.
- Practice embedded relationships.
- Practice reference relationships.
We will:
- Add a User model.
- Add a Bird schema.
- Refactor our Sighting model to support User via reference, and Bird via an embedded document.
- Add a POST endpoint for User.
- Adjust our GET endpoint for the Sighting model.
To avoid data collisions, let's change the db name to birds-mongoose-2
.
Identify the type of relationships we will be creating.
[{
"user": "aUserID",
"birds": [{
"name": "red breasted merganser",
"order": "Anseriformes",
"status": "least concern"
},
{
"name": "cedar waxwing",
"order": "Passeriformes",
"status": "least concern"
}],
"confirmed": true,
"numberSeen": 2
},
{
"user": "aUserID",
"birds": [{
"name": "osprey",
"order": "Accipitriformes",
"status": "least concern"
}],
"confirmed": false,
"numberSeen": 1
}]
[{
"email": "doh@msn.com",
"username": "homersimpson2000",
"level": 98,
"location": "Springfield",
"member": true
},
{
"email": "da.swamp@crocs.com",
"username": "ridnick1",
"level": 2,
"location": "Louisiana",
"member": false
}]
In a new file, Bird.js
, create a Bird schema using properties from the existing Sighting model. Name, order, and status will be the properties moved to our Bird object.
In a new file, User.js
, create a User model with the schema properties email, username, level, location, and member.
Declare a var referencing your User model in server.js
.
Add a property to the Sighting schema called user
that will create a relationship between a User and and Sighting. Each Sighting should be required to be related to only one User. A user may have multiple sightings.
Add another property called bird
that will store embedded data related to a specific bird when a new sighting is created.
Add a POST endpoint for creating new users: /api/users
. Test it with real data.
- POST a new
/api/sighting
, this time using the new Sighting data and a User id. - When GET
/api/sighting
is requested make sure to populate it with User data before returning it to the client. - Make it possible for the client to request sightings for a specific user by through sending the user id as a part of the request query in addition to
status
.
© 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.