Skip to content
This repository has been archived by the owner on Oct 16, 2021. It is now read-only.

Nsbm #174

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Nsbm #174

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
4 changes: 2 additions & 2 deletions Javascript - Node.js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ app.use(express.static(path.join(__dirname, "public"))); // Load static assets
* @param {Function} Callback function for Request, Response objects
*/
app.get("/", (req, res) => {
res.status(200).json({message: "Hello World"});
res.status(200).json({message: "Hello World nsbm"});
});

/**
* @description Starts the server
*/
app.listen(process.env.PORT || 7700, () => {
console.log('Server up and running...');
});
});