Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

index.js #256

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,39 @@ const setupDB = require('./utils/db');
const { port } = keys;
const app = express();

// Middleware for parsing request body
app.use(express.urlencoded({ extended: true }));
app.use(express.json());

// Helmet for securing HTTP headers
app.use(
helmet({
contentSecurityPolicy: false,
frameguard: true
contentSecurityPolicy: false, // Disable CSP if necessary, use with caution
frameguard: { action: 'deny' }, // Prevent clickjacking
})
);

// Enable CORS for cross-origin requests
app.use(cors());

// Set up the database
setupDB();

// Passport configuration for authentication
require('./config/passport')(app);

// Use the defined routes
app.use(routes);

// Start the server
const server = app.listen(port, () => {
console.log(
`${chalk.green('✓')} ${chalk.blue(
`Listening on port ${port}. Visit http://localhost:${port}/ in your browser.`
`Server is running on port ${port}. Visit http://localhost:${port}/ in your browser.`
)}`
);
});

// Set up WebSocket or Socket.io functionality
socket(server);