Work with your partner next to you. Use one laptop. The driver switches every 15m.
To practice using Mongoose, we will design a small data persisting application to keep track of airport data with different models: Airport, Terminal, Flight, and Passenger. You will have to write the models and then hard code data in your app.js
file according to the requirements below. Since we're not worried about Express or views in this activity, log the results of your data persistence in the console when the file is executed - with node app.js
- so we know what's being saved.
-
Create an Express application with four models: Airport, Terminal, Flight, and Passenger
-
Include Mongoose and create embedded models:
- Airport
- Name(String)
- country(String)
- terminals(Array of embedded Terminal Objects)
- Name(String)
- Terminal
- name(String)
- flights(Array of embedded Flight Objects)
- capacity(Number)
- Flight
- from(String)
- to(String)
- airline(String)
- Passenger
- firstName(String)
- lastName (String)
- dob (Date)
- Airport
-
Hard code the following data in
app.js
:- A flight from CDG France to JFK New-York, USA on American Airlines with no passengers. The name of the flight is "flight1"
- A second flight from Heathrow UK to JFK New-York, USA on British Airways with no passengers. The name of the flight is "flight2"
- An airport called "JFK" in the USA.
- A terminal called "Terminal 1"
pushed
to airport1.terminals. It has a capacity of 234324. This terminal should have two flights: flight1 and flight2
-
Save and console.log all the objects and their children in the console - you should see all objects when
node app.js
is executed.
No starter code for this app, create it from scratch !
The app's folder structure should look like this:
├── app.js
├── models
│ ├── airport.js
│ ├── flight.js
│ ├── passenger.js
│ └── terminal.js
├── node_modules
└── package.json
You should see all your objects when logged in the console when node app.js
is executed.
Slack me your project files.