You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var notificationRouter = require('./project/routing/notifications');
var config = require('./config');
const app = express();
app.use(bodyParser.json());
app.use('/notifications', notificationRouter);
app.listen(config.PORT, () => console.log(`Notification API listening on port ${config.PORT}\nOpen http://localhost:${config.PORT}/notifications to view`));