Node/express - Missing ) After Argument List February 28, 2024 Post a Comment new to node... const express = require('express'); const bodyParser= require('body-parser'); const MongoClient = require('mongodb').MongoClient; const app = express(); app.use(bSolution 1: You have an unnecessary parenthesis inapp.post((baseURL + '/people', ...); CopyReplace that withapp.post(baseURL + '/people', ...); Copyor enclose the first parameter with a closing parenthesis.app.post((baseURL + '/people'), ...); Copy Share Post a Comment for "Node/express - Missing ) After Argument List"
Post a Comment for "Node/express - Missing ) After Argument List"