Untitled
unknown
plain_text
3 years ago
992 B
4
Indexable
// Set up dependencies and libraries const express = require('express'); const bodyParser = require('body-parser'); const mongoose = require('mongoose'); // Connect to the database mongoose.connect('mongodb://localhost:27017/webpt', { useNewUrlParser: true, useUnifiedTopology: true }); // Set up the express app const app = express(); app.use(bodyParser.json()); // Set up the routes app.get('/patients', (req, res) => { // Get a list of patients from the database }); app.post('/patients', (req, res) => { // Create a new patient in the database }); app.get('/patients/:id', (req, res) => { // Get a specific patient from the database }); app.put('/patients/:id', (req, res) => { // Update a specific patient in the database }); app.delete('/patients/:id', (req, res) => { // Delete a specific patient from the database }); // Start the server app.listen(3000, () => { console.log('WebPT server is running on port 3000'); });
Editor is loading...