May 2018
Intermediate to advanced
470 pages
13h 54m
English
We will add a GET route to the game routes to retrieve all the games stored in the database.
mern-vrgame/server/routes/game.routes.js:
router.route('/api/games') .get(gameCtrl.list)
A GET request to /api/games will execute the list controller method.
Read now
Unlock full access