Installation and instantiation of 'body parser' shows deprecated status within the IDE. information gathered from
stackOverflow
shows that instead of pulling in body parser, we can simply use the following:
app.use(express.urlencoded({ extended: true }));
app.use(express.json());